1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 99.2beta8 (1.46)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>36. httpd -- Apache Web Server</TITLE>
<META NAME="description" CONTENT="36. httpd -- Apache Web Server">
<META NAME="keywords" CONTENT="rute">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="LaTeX2HTML v99.2beta8">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="rute.css">
<LINK REL="next" HREF="node40.html">
<LINK REL="previous" HREF="node38.html">
<LINK REL="up" HREF="rute.html">
<LINK REL="next" HREF="node40.html">
</HEAD>
<BODY BGCOLOR=#FFFFFF >
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
<TR><TD align=left bgcolor="#000000">
<FONT COLOR=white>
<A HREF="http://www.icon.co.za/~psheer/rute-purchase.html"><FONT COLOR=white>Purchase</FONT></A>
</FONT>
</TD><TD align=center bgcolor="#000000">
<FONT COLOR=white>
Copyright © 2002 Paul Sheer. <A HREF="copying.html"><FONT COLOR=white>Click here for copying permissions.</FONT></A>
</FONT>
</TD><TD align=right bgcolor="#000000">
<FONT COLOR=white>
<A HREF="http://www.icon.co.za/~psheer/rute-home.html"><FONT COLOR=white>Home</FONT></A>
</FONT>
</TD></TR>
<TR><TD colspan=2 align=left bgcolor="#ECEBF4">
<IMG SRC="va-btn-small-light-60.png">
</TD><TD align=right bgcolor="#ECEBF4">
<IMG SRC="sflogo2-steel-60.png">
</TD></TR>
</TABLE><BR>
<!--Navigation Panel-->
<A NAME="tex2html2666"
HREF="node40.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
<A NAME="tex2html2662"
HREF="rute.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
<A NAME="tex2html2656"
HREF="node38.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
<A NAME="tex2html2664"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html2667"
HREF="node40.html">37. crond and atd</A>
<B> Up:</B> <A NAME="tex2html2663"
HREF="rute.html">rute</A>
<B> Previous:</B> <A NAME="tex2html2657"
HREF="node38.html">35. The LINUX File</A>
  <B> <A NAME="tex2html2665"
HREF="node1.html">Contents</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
<UL>
<LI><A NAME="tex2html2668"
HREF="#SECTION003910000000000000000">36.1 Web Server Basics</A>
<LI><A NAME="tex2html2669"
HREF="#SECTION003920000000000000000">36.2 Installing and Configuring Apache</A>
<UL>
<LI><A NAME="tex2html2670"
HREF="#SECTION003921000000000000000">36.2.1 Sample <TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT></A>
<LI><A NAME="tex2html2671"
HREF="#SECTION003922000000000000000">36.2.2 Common directives</A>
<LI><A NAME="tex2html2672"
HREF="#SECTION003923000000000000000">36.2.3 User HTML directories</A>
<LI><A NAME="tex2html2673"
HREF="#SECTION003924000000000000000">36.2.4 Aliasing</A>
<LI><A NAME="tex2html2674"
HREF="#SECTION003925000000000000000">36.2.5 Fancy indexes</A>
<LI><A NAME="tex2html2675"
HREF="#SECTION003926000000000000000">36.2.6 Encoding and language negotiation</A>
<LI><A NAME="tex2html2676"
HREF="#SECTION003927000000000000000">36.2.7 Server-side includes -- SSI</A>
<LI><A NAME="tex2html2677"
HREF="#SECTION003928000000000000000">36.2.8 CGI -- Common Gateway Interface</A>
<LI><A NAME="tex2html2678"
HREF="#SECTION003929000000000000000">36.2.9 Forms and CGI</A>
<LI><A NAME="tex2html2679"
HREF="#SECTION0039210000000000000000">36.2.10 Setuid CGIs</A>
<LI><A NAME="tex2html2680"
HREF="#SECTION0039211000000000000000">36.2.11 Apache modules and PHP</A>
<LI><A NAME="tex2html2681"
HREF="#SECTION0039212000000000000000">36.2.12 Virtual hosts</A>
</UL></UL>
<!--End of Table of Child-Links-->
<HR>
<H1><A NAME="SECTION003900000000000000000">
36. <TT>
<FONT COLOR="#0000ff">httpd</FONT></TT> -- Apache Web Server</A>
</H1>
<P>
<A NAME="chap:apache"></A>
<P>
In this chapter, we will show how to set up a web
server running virtual domains
and dynamic CGI web
pages. HTML is not covered, and you are expected
to have some understanding of what HTML is, or at least where to find
documentation about it.
<P>
<H1><A NAME="SECTION003910000000000000000">
36.1 Web Server Basics</A>
</H1>
<P>
<A NAME="sec:httpdsh"></A>
<P>
In Section <A HREF="node29.html#sec:telnetcnn">26.2</A> we showed a simple HTTP session
with the <TT>
<FONT COLOR="#0000ff">telnet</FONT></TT> command.
A <I>web server</I> is really nothing
more than a program that reads a file from the hard disk whenever a
<TT>
<FONT COLOR="#0000ff">GET /<filename>.html HTTP/1.0</FONT></TT> request comes in
on port 80. Here, we will show a simple web server written in
shell script. <FONT COLOR="#ffa500">[Not by me. The author did not put his name in the source,
so if you are out there, please drop me an email.]</FONT> You will need to add the line
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>www stream tcp nowait nobody /usr/local/sbin/sh-httpd</code><br>
</FONT></TD></TR></TABLE><P>
to your <TT>
<FONT COLOR="#0000ff">/etc/inetd.conf</FONT></TT> file. If you are running
<TT>
<FONT COLOR="#0000ff">xinetd</FONT></TT>, then you will need to add a file containing
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>service www</code><br>
<code>{</code><br>
<code> socket_type = stream</code><br>
<code> wait = no</code><br>
<code> user = nobody</code><br>
<code> server = /usr/local/sbin/sh-httpd</code><br>
<code>}</code><br>
</FONT></TD></TR></TABLE><P>
to your <TT>
<FONT COLOR="#0000ff">/etc/xinetd.d/</FONT></TT>
directory. Then, you must stop any already running web
servers and restart <TT>
<FONT COLOR="#0000ff">inetd</FONT></TT> (or
<TT>
<FONT COLOR="#0000ff">xinetd</FONT></TT>).
<P>
You will also have to create a log file
(<TT>
<FONT COLOR="#0000ff">/usr/local/var/log/sh-httpd.log</FONT></TT>) and at least
one web page (<TT>
<FONT COLOR="#0000ff">/usr/local/var/sh-www/index.html</FONT></TT>)
for your server to serve. It can contain, say:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><HTML></code><br>
<code> <HEAD></code><br>
<code> <TITLE>My First Document</TITLE></code><br>
<code> </HEAD></code><br>
<code> <BODY bgcolor=#CCCCCC text="#000000"></code><br>
<code>This is my first document<P></code><br>
<code>Please visit</code><br>
<code> <A HREF="http://rute.sourceforge.net/"></code><br>
<code> The Rute Home Page</code><br>
<code> </A></code><br>
<code>for more info.</P></code><br>
<code> </BODY></code><br>
<code></HTML></code><br>
</FONT></TD></TR></TABLE><P>
<P>
Note that the server runs as <TT>
<FONT COLOR="#0000ff">nobody</FONT></TT>, so the log file must be writable
by the <TT>
<FONT COLOR="#0000ff">nobody</FONT></TT> user, and the <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT> file must be readable. Also
note the use of the <TT>
<FONT COLOR="#0000ff">getpeername</FONT></TT> command, which can be changed to <TT>
<FONT COLOR="#0000ff">PEER=""</FONT></TT>
if you do not have the <TT>
<FONT COLOR="#0000ff">netpipes</FONT></TT> package installed. <FONT COLOR="#ffa500">[I am not completely
sure if other commands used here are unavailable on other U<SMALL>NIX</SMALL>
systems.]</FONT>.
<P>
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>20</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>25</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>30</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>35</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>40</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>45</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>50</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>55</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>60</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>65</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>70</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>75</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>80</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>85</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>90</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>95</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>100</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>105</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>110</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>115</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>120</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code>VERSION=0.1</code><br>
<code>NAME="ShellHTTPD"</code><br>
<code>DEFCONTENT="text/html"</code><br>
<code>DOCROOT=/usr/local/var/sh-www</code><br>
<code>DEFINDEX=index.html</code><br>
<code>LOGFILE=/usr/local/var/log/sh-httpd.log</code><br>
<code> </code><br>
<code>log() {</code><br>
<code> local REMOTE_HOST=$1</code><br>
<code> local REFERRER=$2</code><br>
<code> local CODE=$3</code><br>
<code> local SIZE=$4</code><br>
<code> </code><br>
<code> echo "$REMOTE_HOST $REFERRER - [$REQ_DATE] \</code><br>
<code>\"${REQUEST}\" ${CODE} ${SIZE}" >> ${LOGFILE} </code><br>
<code>}</code><br>
<code> </code><br>
<code>print_header() {</code><br>
<code> echo -e "HTTP/1.0 200 OK\r"</code><br>
<code> echo -e "Server: ${NAME}/${VERSION}\r" </code><br>
<code> echo -e "Date: `date`\r"</code><br>
<code>}</code><br>
<code> </code><br>
<code>print_error() {</code><br>
<code> echo -e "HTTP/1.0 $1 $2\r"</code><br>
<code> echo -e "Content-type: $DEFCONTENT\r"</code><br>
<code> echo -e "Connection: close\r"</code><br>
<code> echo -e "Date: `date`\r"</code><br>
<code> echo -e "\r"</code><br>
<code> echo -e "$2\r"</code><br>
<code> exit 1</code><br>
<code>}</code><br>
<code> </code><br>
<code>guess_content_type() {</code><br>
<code> local FILE=$1</code><br>
<code> local CONTENT</code><br>
<code> </code><br>
<code> case ${FILE##*.} in</code><br>
<code> html) CONTENT=$DEFCONTENT ;;</code><br>
<code> gz) CONTENT=application/x-gzip ;;</code><br>
<code> *) CONTENT=application/octet-stream ;;</code><br>
<code> esac</code><br>
<code> </code><br>
<code> echo -e "Content-type: $CONTENT"</code><br>
<code>}</code><br>
<code> </code><br>
<code>do_get() {</code><br>
<code> local DIR</code><br>
<code> local NURL</code><br>
<code> local LEN</code><br>
<code> </code><br>
<code> if [ ! -d $DOCROOT ]; then</code><br>
<code> log ${PEER} - 404 0</code><br>
<code> print_error 404 "No such file or directory"</code><br>
<code> fi</code><br>
<code> </code><br>
<code> if [ -z "${URL##*/}" ]; then</code><br>
<code> URL=${URL}${DEFINDEX}</code><br>
<code> fi</code><br>
<code> </code><br>
<code> DIR="`dirname $URL`"</code><br>
<code> if [ ! -d ${DOCROOT}/${DIR} ]; then</code><br>
<code> log ${PEER} - 404 0</code><br>
<code> print_error 404 "Directory not found"</code><br>
<code> else</code><br>
<code> cd ${DOCROOT}/${DIR}</code><br>
<code> NURL="`pwd`/`basename ${URL}`"</code><br>
<code> URL=${NURL}</code><br>
<code> fi</code><br>
<code> </code><br>
<code> if [ ! -f ${URL} ]; then</code><br>
<code> log ${PEER} - 404 0</code><br>
<code> print_error 404 "Document not found"</code><br>
<code> fi</code><br>
<code> </code><br>
<code> print_header</code><br>
<code> guess_content_type ${URL}</code><br>
<code> LEN="`ls -l ${URL} | tr -s ' ' | cut -d ' ' -f 5`"</code><br>
<code> echo -e "Content-length: $LEN\r\n\r"</code><br>
<code> log ${PEER} - 200 ${LEN}</code><br>
<code> cat ${URL}</code><br>
<code> sleep 3</code><br>
<code>}</code><br>
<code> </code><br>
<code>read_request() {</code><br>
<code> local DIRT</code><br>
<code> local COMMAND</code><br>
<code> </code><br>
<code> read REQUEST</code><br>
<code> read DIRT</code><br>
<code> </code><br>
<code> REQ_DATE="`date +"%d/%b/%Y:%H:%M:%S %z"`"</code><br>
<code> REQUEST="`echo ${REQUEST} | tr -s [:blank:]`"</code><br>
<code> COMMAND="`echo ${REQUEST} | cut -d ' ' -f 1`"</code><br>
<code> URL="`echo ${REQUEST} | cut -d ' ' -f 2`"</code><br>
<code> PROTOCOL="`echo ${REQUEST} | cut -d ' ' -f 3`"</code><br>
<code> </code><br>
<code> case $COMMAND in</code><br>
<code> HEAD)</code><br>
<code> print_error 501 "Not implemented (yet)"</code><br>
<code> ;;</code><br>
<code> GET)</code><br>
<code> do_get</code><br>
<code> ;;</code><br>
<code> *)</code><br>
<code> print_error 501 "Not Implemented"</code><br>
<code> ;;</code><br>
<code> esac</code><br>
<code>}</code><br>
<code> </code><br>
<code>#</code><br>
<code># It was supposed to be clean - without any non-standard utilities</code><br>
<code># but I want some logging where the connections come from, so</code><br>
<code># I use just this one utility to get the peer address</code><br>
<code>#</code><br>
<code># This is from the netpipes package</code><br>
<code>PEER="`getpeername | cut -d ' ' -f 1`"</code><br>
<code> </code><br>
<code>read_request</code><br>
<code> </code><br>
<code>exit 0</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Now run <TT>
<FONT COLOR="#0000ff">telnet localhost 80</FONT></TT>, as in Section <A HREF="node29.html#sec:telnetcnn">26.2</A>.
If that works and your log files are being properly appended (use <TT>
<FONT COLOR="#0000ff">tail -f </FONT></TT>...),
you can try to connect to <I><TT><A NAME="tex2html50"
HREF="http://localhost/">http://localhost/</A></TT></I> with a web browser like Netscape.
<P>
Notice also that the command <TT>
<FONT COLOR="#0000ff">getsockname</FONT></TT> (which
tells you which of your own IP addresses the remote client connected
to) could allow the script to serve pages from a different directory for
each IP address. This is <I>virtual domains</I> in a nutshell. <FONT COLOR="#ffa500">[Groovy,
baby, I'm in a giant nutshell.... how do I get out?]</FONT>
<P>
<H1><A NAME="SECTION003920000000000000000">
36.2 Installing and Configuring Apache</A>
</H1>
<P>
Because all distributions package Apache in a different way, here I
assume Apache to have been installed from its source tree, rather
than from a <TT>
<FONT COLOR="#0000ff">.deb</FONT></TT> or <TT>
<FONT COLOR="#0000ff">.rpm</FONT></TT> package.
You can refer to Section <A HREF="node27.html#sec:gnupackages">24.1</A> on how to install Apache
from its source <TT>
<FONT COLOR="#0000ff">.tar.gz</FONT></TT> file like any other GNU package.
(You can even install it under Windows, Windows NT, or OS/2.)
The source tree is, of course, available from
<EM>The Apache Home Page</EM> <I><<TT><A NAME="tex2html51"
HREF="http://www.apache.org">http://www.apache.org</A></TT>></I>.
Here I assume you have installed it in <TT>
<FONT COLOR="#0000ff">--prefix=/opt/apache/</FONT></TT>.
In the process, Apache will have dumped a huge reference manual
into
<TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/manual/</FONT></TT>.
<P>
<H2><A NAME="SECTION003921000000000000000">
36.2.1 Sample <TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT></A>
</H2>
<P>
Apache has several legacy configuration files: <TT>
<FONT COLOR="#0000ff">access.conf</FONT></TT> and
<TT>
<FONT COLOR="#0000ff">srm.conf</FONT></TT> are two of them. These files are now deprecated and should
be left empty. A single configuration file <TT>
<FONT COLOR="#0000ff">/opt/apache/conf/httpd.conf</FONT></TT>
may contain at minimum:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>20</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>25</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>30</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>35</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>40</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>ServerType standalone</code><br>
<code>ServerRoot "/opt/apache"</code><br>
<code>PidFile /opt/apache/logs/httpd.pid</code><br>
<code>ScoreBoardFile /opt/apache/logs/httpd.scoreboard</code><br>
<code>Port 80</code><br>
<code>User nobody</code><br>
<code>Group nobody</code><br>
<code>HostnameLookups Off</code><br>
<code>ServerAdmin webmaster@cranzgot.co.za</code><br>
<code>UseCanonicalName On</code><br>
<code>ServerSignature On</code><br>
<code>DefaultType text/plain</code><br>
<code>ErrorLog /opt/apache/logs/error_log</code><br>
<code>LogLevel warn</code><br>
<code>LogFormat "%h %l %u %t \"%r\" %>s %b" common</code><br>
<code>CustomLog /opt/apache/logs/access_log common</code><br>
<code>DocumentRoot "/opt/apache/htdocs"</code><br>
<code>DirectoryIndex index.html</code><br>
<code>AccessFileName .htaccess</code><br>
<code><Directory /></code><br>
<code> Options FollowSymLinks</code><br>
<code> AllowOverride None</code><br>
<code> Order Deny,Allow</code><br>
<code> Deny from All</code><br>
<code></Directory></code><br>
<code><Files ~ "^\.ht"></code><br>
<code> Order allow,deny</code><br>
<code> Deny from all</code><br>
<code></Files></code><br>
<code><Directory "/opt/apache/htdocs"></code><br>
<code> Options Indexes FollowSymLinks MultiViews</code><br>
<code> AllowOverride All</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
<code><Directory "/opt/apache/htdocs/home/*/www"></code><br>
<code> Options Indexes MultiViews</code><br>
<code> AllowOverride None</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
<code>UserDir /opt/apache/htdocs/home/*/www</code><br>
</FONT></TD></TR></TABLE><P>
<P>
With the config file ready, you can move the
<TT>
<FONT COLOR="#0000ff">index.html</FONT></TT> file above to <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/</FONT></TT>.
You will notice the complete Apache manual and a demo
page already installed there; you can move them to another directory
for the time being. Now run
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>/opt/apache/bin/httpd -X</code><br>
</FONT></TD></TR></TABLE><P>
and then point your web browser to <I><TT><A NAME="tex2html52"
HREF="http://localhost/">http://localhost/</A></TT></I>
as before.
<P>
<H2><A NAME="SECTION003922000000000000000">
36.2.2 Common directives</A>
</H2>
<P>
Here is a description of the options. Each option is called
a <I>directive</I> in Apache terminology. A complete
list of basic directives is in the file <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/manual/mod/core.html</FONT></TT>.
<DL>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ServerType</FONT></TT></STRONG></DT>
<DD>As discussed in Section <A HREF="node32.html#sec:servinetdstand">29.2</A>,
some services can run standalone or from <TT>
<FONT COLOR="#0000ff">inetd</FONT></TT> (or <TT>
<FONT COLOR="#0000ff">xinetd</FONT></TT>).
This directive can be exactly <TT>
<FONT COLOR="#0000ff">standalone</FONT></TT> or <TT>
<FONT COLOR="#0000ff">inetd</FONT></TT>. If you choose
<TT>
<FONT COLOR="#0000ff">inetd</FONT></TT>, you will need to add an appropriate line into your <TT>
<FONT COLOR="#0000ff">inetd</FONT></TT>
configuration, although a web server should almost certainly choose standalone
mode.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ServerRoot</FONT></TT></STRONG></DT>
<DD>This is the directory
superstructure <FONT COLOR="#ffa500">[See page <A HREF="node20.html#page:directsuper"><IMG ALIGN="BOTTOM" BORDER="1" ALT="[*]" SRC="crossref.png"></A>.]</FONT> under which
Apache is installed. It will always be the same as the value passed to <TT>
<FONT COLOR="#0000ff">--prefix=</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">PidFile</FONT></TT></STRONG></DT>
<DD>Many system
services store the process ID in a file for
shutdown and monitoring purposes. On most distributions, the
file is <TT>
<FONT COLOR="#0000ff">/var/run/httpd.pid</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ScoreBoardFile</FONT></TT></STRONG></DT>
<DD>This option is used for communication between Apache parent and child
processes on some non-U<SMALL>NIX</SMALL> systems.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Port</FONT></TT></STRONG></DT>
<DD>This is the TCP port for standalone servers to listen on.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">User</FONT></TT>, <TT>
<FONT COLOR="#0000ff">Group</FONT></TT></STRONG></DT>
<DD>This option is
important for security. It forces <TT>
<FONT COLOR="#0000ff">httpd</FONT></TT> to user
<TT>
<FONT COLOR="#0000ff">nobody</FONT></TT> privileges. If the web server is ever hacked, the attack will not be
able to gain more than the privileges of the <TT>
<FONT COLOR="#0000ff">nobody</FONT></TT> user.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">HostnameLookups</FONT></TT></STRONG></DT>
<DD>To
force a reverse DNS lookup
on every connecting host, set this directive to <TT>
<FONT COLOR="#0000ff">on</FONT></TT>. To force
a forward lookup on every reverse lookup, set this to <TT>
<FONT COLOR="#0000ff">double</FONT></TT>. This option is
for logging purposes since access control does a reverse and forward reverse lookup
anyway if required. It should certainly be <TT>
<FONT COLOR="#0000ff">off</FONT></TT> if you want to reduce latency.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ServerAdmin</FONT></TT></STRONG></DT>
<DD>Error messages include this email address.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">UseCanonicalName</FONT></TT></STRONG></DT>
<DD>If Apache has to return a URL for any reason,
it will normally return the full name of the server. Setting to <TT>
<FONT COLOR="#0000ff">off</FONT></TT>
uses the very host name sent by the client.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ServerSignature</FONT></TT></STRONG></DT>
<DD>Add the server name to HTML error messages.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">DefaultType</FONT></TT></STRONG></DT>
<DD>All files returned to the client have a type field
specifying how the file should be displayed. If Apache cannot deduce the type,
it assumes the MIME Type to be <TT>
<FONT COLOR="#0000ff">text/plain</FONT></TT>. See Section <A HREF="node15.html#sec:mimeencap">12.6.2</A>
for a discussion of MIME types.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ErrorLog</FONT></TT></STRONG></DT>
<DD>Where errors get logged, usually <TT>
<FONT COLOR="#0000ff">/var/log/httpd/error_log</FONT></TT>
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">LogLevel</FONT></TT></STRONG></DT>
<DD>How much info to log.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">LogFormat</FONT></TT></STRONG></DT>
<DD>Define a new log format. Here we
defined a log format and call
it <TT>
<FONT COLOR="#0000ff">common</FONT></TT>. Multiple lines are allowed. Lots of interesting information can actually be
logged: See <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/manual/mod/mod_log_config.html</FONT></TT> for a full description.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">CustomLog</FONT></TT></STRONG></DT>
<DD>The log file name and its (previously defined) format.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">DocumentRoot</FONT></TT></STRONG></DT>
<DD>This directive specifies the top-level
directory that client connections
will see. The string <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/</FONT></TT> is prepended to any file lookup, and
hence a URL <I><TT><A NAME="tex2html53"
HREF="http://localhost/manual/index.html.en">http://localhost/manual/index.html.en</A></TT></I> will return the file
<TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/manual/index.html.en</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">DirectoryIndex</FONT></TT></STRONG></DT>
<DD>This directive gives the default file to try serve for
URLs that contain only a directory name. If a file <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT> does not
exist under that directory, an index of the directory is sent to the client.
Other common configurations use <TT>
<FONT COLOR="#0000ff">index.htm</FONT></TT> or <TT>
<FONT COLOR="#0000ff">default.html</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">AccessFileName</FONT></TT></STRONG></DT>
<DD>Before serving a file to a client, Apache reads
additional directives from a file <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT> in the same directory as the requested
file. If a parent directory contains a <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT> instead, this one will take
priority. The <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT> file contains directives that limit access to the
directory, as discussed below.
</DD>
</DL>
<P>
The above is merely the general configuration of Apache. To actually
serve pages, you need to define directories, each with a particular purpose,
containing particular HTML or graphic files.
The Apache configuration file is very much like an HTML document.
Sections are started with <TT>
<FONT COLOR="#0000ff"><</FONT></TT><I>section</I><TT>
<FONT COLOR="#0000ff"> </FONT></TT><I>parameter</I><TT>
<FONT COLOR="#0000ff">></FONT></TT>
and ended with <TT>
<FONT COLOR="#0000ff"></</FONT></TT><I>section</I><TT>
<FONT COLOR="#0000ff">></FONT></TT>. The most common directive
of this sort is <TT>
<FONT COLOR="#0000ff"><Directory /</FONT></TT><I>directory</I><TT>
<FONT COLOR="#0000ff">></FONT></TT>
which does such
directory definition. Before defining any directories, we need to limit
access to the root directory. This control is critical for security.
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Directory /></code><br>
<code> Options FollowSymLinks</code><br>
<code> Deny from All</code><br>
<code> Order Deny,Allow</code><br>
<code> AllowOverride None</code><br>
<code></Directory></code><br>
</FONT></TD></TR></TABLE><P>
This configuration tells Apache about the root directory, giving clients
very restrictive access to it. The directives are <FONT COLOR="#ffa500">[Some of these
are extracted from the Apache manual.]</FONT>:
<DL>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Options</FONT></TT></STRONG></DT>
<DD>The <TT>
<FONT COLOR="#0000ff">Options</FONT></TT> directive controls which server features are available in
a particular directory. There is also the syntax <TT>
<FONT COLOR="#0000ff">+</FONT></TT><I>option</I> or
<TT>
<FONT COLOR="#0000ff">-</FONT></TT><I>option</I> to include the options of the parent directory,
for example, <TT>
<FONT COLOR="#0000ff">Options +FollowSymLinks -Indexes</FONT></TT>.
<DL>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">FollowSymLinks</FONT></TT></STRONG></DT>
<DD>The server will follow any symbolic links beneath the directory. Be careful
about what symbolic links you have beneath directories with <TT>
<FONT COLOR="#0000ff">FollowSymLinks</FONT></TT>.
You can, for example, give everyone access to the root directory by having
a link <TT>
<FONT COLOR="#0000ff">../../../</FONT></TT> under <TT>
<FONT COLOR="#0000ff">htdocs</FONT></TT>--not what you want.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">ExecCGI</FONT></TT></STRONG></DT>
<DD>Execution of CGI scripts is permitted.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Includes</FONT></TT></STRONG></DT>
<DD>Server-side includes are permitted (more on this later).
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">IncludesNOEXEC</FONT></TT></STRONG></DT>
<DD>Server-side includes are permitted, but the <TT>
<FONT COLOR="#0000ff">#exec</FONT></TT> command and
<TT>
<FONT COLOR="#0000ff">#include</FONT></TT> of CGI scripts are disabled.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Indexes</FONT></TT></STRONG></DT>
<DD>If a client asks for a directory by name and no <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT>
file (or whatever <TT>
<FONT COLOR="#0000ff">DirectoryIndex</FONT></TT> file you specified) is present,
then a pretty listing of the contents of that directory is created and
returned. For security you may want to turn this option off.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">MultiViews</FONT></TT></STRONG></DT>
<DD>Content-negotiated MultiViews are allowed (more on this later).
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">SymLinksIfOwnerMatch</FONT></TT></STRONG></DT>
<DD>The server will only follow symbolic links for which the target
file or directory is owned by the same user ID as the link
(more on this later).
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">All</FONT></TT></STRONG></DT>
<DD>All options except for <TT>
<FONT COLOR="#0000ff">MultiViews</FONT></TT>. This is the default setting.
</DD>
</DL>
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Deny</FONT></TT></STRONG></DT>
<DD>Hosts that are not allowed to connect.
You can specify a host name or IP address, for example, as:
</DD>
</DL>
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>Deny from 10.1.2.3</code><br>
<code>Deny from 192.168.5.0/24</code><br>
<code>Deny from cranzgot.co.za</code><br>
</FONT></TD></TR></TABLE><P>
<DL>
<DT></DT>
<DD>which will deny access
to <TT>
<FONT COLOR="#0000ff">10.1.2.3</FONT></TT>, all hosts beginning with <TT>
<FONT COLOR="#0000ff">192.168.5.</FONT></TT>,
and all hosts ending in <TT>
<FONT COLOR="#0000ff">.cranzgot.co.za</FONT></TT>, including the host <TT>
<FONT COLOR="#0000ff">cranzgot.co.za</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Allow</FONT></TT></STRONG></DT>
<DD>Hosts that are allowed to connect. This directive uses the same
syntax as <TT>
<FONT COLOR="#0000ff">Deny</FONT></TT>.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">Order</FONT></TT></STRONG></DT>
<DD>If order is <TT>
<FONT COLOR="#0000ff">Deny,Allow</FONT></TT>, then the <TT>
<FONT COLOR="#0000ff">Deny</FONT></TT> directives
are checked first and any client that does not match a
<TT>
<FONT COLOR="#0000ff">Deny</FONT></TT> directive or does match an <TT>
<FONT COLOR="#0000ff">Allow</FONT></TT> directive
will be <I>allowed</I> access to the server.
<P>
If order is <TT>
<FONT COLOR="#0000ff">Allow,Deny</FONT></TT>, then the <TT>
<FONT COLOR="#0000ff">Allow</FONT></TT> directives
are checked first and any client that does not match an
<TT>
<FONT COLOR="#0000ff">Allow</FONT></TT> directive or does match a <TT>
<FONT COLOR="#0000ff">Deny</FONT></TT> directive
will be <I>denied</I> access to the server.
</DD>
<DT><STRONG><TT>
<FONT COLOR="#0000ff">AllowOverride</FONT></TT></STRONG></DT>
<DD>In addition to the directives specified
here, additional directives will be read from the file specified by
<TT>
<FONT COLOR="#0000ff">AccessFileName</FONT></TT>, usually called <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT>. This file would
usually exist alongside your <TT>
<FONT COLOR="#0000ff">.html</FONT></TT> files or otherwise in a
parent directory. If the file exists, its contents are read into the
current <TT>
<FONT COLOR="#0000ff"><Directory</FONT></TT><I> ...</I><TT>
<FONT COLOR="#0000ff">></FONT></TT> directive.
<TT>
<FONT COLOR="#0000ff">AllowOverride</FONT></TT> says what directives the <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT> file is
allowed to squash. The complete list can be found in
<TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/manual/mod/core.html</FONT></TT>.
</DD>
</DL>
<P>
You can see that we give very restrictive <TT>
<FONT COLOR="#0000ff">Options</FONT></TT>
to the root directory, as well as very restrictive access. The only server
feature we allow is <TT>
<FONT COLOR="#0000ff">FollowSymLinks</FONT></TT>, then we <TT>
<FONT COLOR="#0000ff">Deny</FONT></TT>
any access, and then we remove the possibility that a <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT>
file could override our restrictions.
<P>
The <TT>
<FONT COLOR="#0000ff"><Files </FONT></TT><I>...</I><TT>
<FONT COLOR="#0000ff">></FONT></TT> directive sets restrictions
on all files matching a particular regular expression. As a security measure,
we use it to prevent access to all <TT>
<FONT COLOR="#0000ff">.htaccess</FONT></TT> files as follows:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Files ~ "^\.ht"></code><br>
<code> Order allow,deny</code><br>
<code> Deny from all</code><br>
<code></Files></code><br>
</FONT></TD></TR></TABLE><P>
<P>
We are now finally ready to add actual web page directories.
These take a less restrictive set of access controls:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Directory "/opt/apache/htdocs"></code><br>
<code> Options Indexes FollowSymLinks MultiViews</code><br>
<code> AllowOverride All</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
</FONT></TD></TR></TABLE><P>
<P>
<H2><A NAME="SECTION003923000000000000000">
36.2.3 User HTML directories</A>
</H2>
<P>
Our users may require that Apache know about their
private web page directories <TT>
<FONT COLOR="#0000ff">~/www/</FONT></TT>. This is easy to support
with the special <TT>
<FONT COLOR="#0000ff">UserDir</FONT></TT> directive:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Directory "/opt/apache/htdocs/home/*/www"></code><br>
<code> Options Indexes MultiViews</code><br>
<code> AllowOverride None</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
<code>UserDir /opt/apache/htdocs/home/*/www</code><br>
</FONT></TD></TR></TABLE><P>
For this feature to work, you must symlink <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/home</FONT></TT> to <TT>
<FONT COLOR="#0000ff">/home</FONT></TT>,
and create a directory <TT>
<FONT COLOR="#0000ff">www/</FONT></TT> under each user's home directory.
Hitting the URL <I><TT><A NAME="tex2html54"
HREF="http://localhost/~jack/index.html">http://localhost/~jack/index.html</A></TT></I> will then retrieve
the file <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/home/jack/www/index.html</FONT></TT>.
You will find that Apache gives a <TT>
<FONT COLOR="#0000ff">Forbidden</FONT></TT> error message when
you try to do this. This is probably because <TT>
<FONT COLOR="#0000ff">jack</FONT></TT>'s
home directory's permissions are too restrictive. Your choices
vary between now making <TT>
<FONT COLOR="#0000ff">jack</FONT></TT>'s home directory less restricted
or increasing the privileges of Apache. Running Apache under the <TT>
<FONT COLOR="#0000ff">www</FONT></TT>
group by using <TT>
<FONT COLOR="#0000ff">Group www</FONT></TT>, and then running
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>groupadd -g 65 www</code><br>
<code>chown jack:www /home/jack /home/jack/www</code><br>
<code>chmod 0750 /home/jack /home/jack/www</code><br>
</FONT></TD></TR></TABLE><P>
is a reasonable compromise.
<P>
<H2><A NAME="SECTION003924000000000000000">
36.2.4 Aliasing</A>
</H2>
<P>
Sometimes, HTML documents will want to refer to a file or graphic
by using a simple prefix, rather than a long directory name. Other
times, you want two different references to source the same file.
The <TT>
<FONT COLOR="#0000ff">Alias</FONT></TT> directive creates virtual links between directories.
For example, adding the following line, means that a URL <TT>
<FONT COLOR="#0000ff">/icons/bomb.gif</FONT></TT>
will serve the file <TT>
<FONT COLOR="#0000ff">/opt/apache/icons/bomb.gif</FONT></TT>:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>Alias /icons/ "/opt/apache/icons/"</code><br>
</FONT></TD></TR></TABLE><P>
We do, of course, need to tell Apache about this directory:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Directory "/opt/apache/icons"></code><br>
<code> Options None</code><br>
<code> AllowOverride None</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
</FONT></TD></TR></TABLE><P>
<P>
<H2><A NAME="SECTION003925000000000000000">
36.2.5 Fancy indexes</A>
</H2>
<P>
You will find the directory lists generated by the preceding
configuration rather bland. The directive
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>IndexOptions FancyIndexing</code><br>
</FONT></TD></TR></TABLE><P>
causes nice descriptive icons to be printed to the left of the file name.
What icons match what file types is a trick issue. You can start with:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip</code><br>
<code>AddIconByType (TXT,/icons/text.gif) text/*</code><br>
<code>AddIconByType (IMG,/icons/image2.gif) image/*</code><br>
<code>AddIconByType (SND,/icons/sound2.gif) audio/*</code><br>
<code>AddIconByType (VID,/icons/movie.gif) video/*</code><br>
<code>AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip</code><br>
<code>AddIcon /icons/a.gif .ps .eps</code><br>
<code>AddIcon /icons/layout.gif .html .shtml .htm</code><br>
</FONT></TD></TR></TABLE><P>
This requires the <TT>
<FONT COLOR="#0000ff">Alias</FONT></TT> directive above to be present.
The default Apache configuration contains a far more extensive
map of file types.
<P>
<H2><A NAME="SECTION003926000000000000000">
36.2.6 Encoding and language negotiation</A>
</H2>
<P>
You can get Apache to serve
<TT>
<FONT COLOR="#0000ff">gzip</FONT></TT>ped files
with this:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddEncoding x-compress Z</code><br>
<code>AddEncoding x-gzip gz</code><br>
</FONT></TD></TR></TABLE><P>
Now if a client requests a file <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT>, but only a file
<TT>
<FONT COLOR="#0000ff">index.html.gz</FONT></TT> exists, Apache decompresses it on-the-fly.
Note that you must have the <TT>
<FONT COLOR="#0000ff">MultiViews</FONT></TT> options enabled.
<P>
The next options cause Apache to serve <TT>
<FONT COLOR="#0000ff">index.html.</FONT></TT><I>language-code</I>
when <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT> is requested, filling in the preferred language code
sent by the web browser. Adding these directives causes your Apache manual
to display correctly and will properly show documents that have non-English
translations. Here also, the <TT>
<FONT COLOR="#0000ff">MultiViews</FONT></TT> must be present.
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddLanguage en .en</code><br>
<code>AddLanguage da .dk</code><br>
<code>AddLanguage nl .nl</code><br>
<code>AddLanguage et .ee</code><br>
<code>AddLanguage fr .fr</code><br>
<code>AddLanguage de .de</code><br>
<code>AddLanguage el .el</code><br>
<code>AddLanguage ja .ja</code><br>
<code>AddLanguage ru .ru</code><br>
<code>LanguagePriority en da nl et fr de el ja ru</code><br>
</FONT></TD></TR></TABLE><P>
The <TT>
<FONT COLOR="#0000ff">LanguagePriority</FONT></TT> directive indicates the preferred language
if the browser did not specify any.
<P>
Some files might contain a <TT>
<FONT COLOR="#0000ff">.koi8-r</FONT></TT> extension,
indicating a Russian character set encoding for this file. Many
languages have such custom character sets. Russian files are named
<I>webpage</I><TT>
<FONT COLOR="#0000ff">.html.ru.koi8-r</FONT></TT>. Apache must tell the web browser
about the encoding type, based on the extension. Here are directives
for Japanese, Russian, and UTF-8 <FONT COLOR="#ffa500">[UTF-8 is a Unicode character set
encoding useful for any language.]</FONT>, as follows:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddCharset ISO-2022-JP .jis</code><br>
<code>AddCharset KOI8-R .koi8-r</code><br>
<code>AddCharset UTF-8 .utf8</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Once again, the default Apache configuration contains a far
more extensive map of languages and character sets.
<P>
<H2><A NAME="SECTION003927000000000000000">
36.2.7 Server-side includes -- SSI</A>
</H2>
<P>
Apache actually has a built-in programming language that interprets <TT>
<FONT COLOR="#0000ff">.shtml</FONT></TT>
files as scripts. The output of such a script is returned to the client.
Most of a typical <TT>
<FONT COLOR="#0000ff">.shtml</FONT></TT> file will be ordinary HTML, which will
be served unmodified. However, lines like
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><!--#echo var="DATE_LOCAL" --></code><br>
</FONT></TD></TR></TABLE><P>
will be interpreted, and their output <I>included</I> into the
HTML--hence the name <I>server-side includes</I>. Server-side includes are ideal
for HTML pages that contain mostly static HTML with small bits of dynamic
content. To demonstrate, add the following to your <TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT>:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddType text/html .shtml</code><br>
<code>AddHandler server-parsed .shtml</code><br>
<code><Directory "/opt/apache/htdocs/ssi"></code><br>
<code> Options Includes</code><br>
<code> AllowOverride None</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
</FONT></TD></TR></TABLE><P>
Create a directory <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/ssi</FONT></TT> with the index
file <TT>
<FONT COLOR="#0000ff">index.shtml</FONT></TT>:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><HTML></code><br>
<code>The date today is <!--#echo var="DATE_LOCAL" -->.<P></code><br>
<code>Here is a directory listing:<br></code><br>
<code> <PRE></code><br>
<code> <!--#exec cmd="ls -al" --></code><br>
<code> </PRE></code><br>
<code><!--#include virtual="footer.html" --></code><br>
<code></HTML></code><br>
</FONT></TD></TR></TABLE><P>
and then a file <TT>
<FONT COLOR="#0000ff">footer.html</FONT></TT> containing anything you
like. It is obvious how useful this procedure is for creating many documents with
the same banner by means of a <TT>
<FONT COLOR="#0000ff">#include</FONT></TT> statement. If you are wondering
what other variables you can print besides <TT>
<FONT COLOR="#0000ff">DATE_LOCAL</FONT></TT>, try the
following:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><HTML></code><br>
<code> <PRE></code><br>
<code> <!--#printenv --></code><br>
<code> </PRE></code><br>
<code></HTML></code><br>
</FONT></TD></TR></TABLE><P>
<P>
You can also goto <I><TT><A NAME="tex2html55"
HREF="http://localhost/manual/howto/ssi.html">http://localhost/manual/howto/ssi.html</A></TT></I>
to see some other examples.
<P>
<H2><A NAME="SECTION003928000000000000000">
36.2.8 CGI -- Common Gateway Interface</A>
</H2>
<P>
(I have actually never managed to figure out why CGI is called CGI.) CGI is
where a URL points to a script. What comes up in your browser is the
output of the script (were it to be executed) instead of the contents
of the script itself. To try this, create a file <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/test.cgi</FONT></TT>:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code> </code><br>
<code>echo 'Content-type: text/html'</code><br>
<code>echo</code><br>
<code>echo '<HTML>'</code><br>
<code>echo ' <HEAD>'</code><br>
<code>echo ' <TITLE>My First CGI</TITLE>'</code><br>
<code>echo ' </HEAD>'</code><br>
<code>echo ' <BODY bgcolor=#CCCCCC text="#000000">'</code><br>
<code>echo 'This is my first CGI<P>'</code><br>
<code>echo 'Please visit'</code><br>
<code>echo ' <A HREF="http://rute.sourceforge.net/">'</code><br>
<code>echo ' The Rute Home Page'</code><br>
<code>echo ' </A>'</code><br>
<code>echo 'for more info.</P>'</code><br>
<code>echo ' </BODY>'</code><br>
<code>echo '</HTML>'</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Make this script executable with <TT>
<FONT COLOR="#0000ff">chmod a+x test.cgi</FONT></TT> and
test the output by running it on the command-line. Add the line
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>AddHandler cgi-script .cgi</code><br>
</FONT></TD></TR></TABLE><P>
to your <TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT> file. Next, modify your <TT>
<FONT COLOR="#0000ff">Options</FONT></TT>
for the directory <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs</FONT></TT> to include <TT>
<FONT COLOR="#0000ff">ExecCGI</FONT></TT>,
like this:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><Directory "/opt/apache/htdocs"></code><br>
<code> Options Indexes FollowSymLinks MultiViews ExecCGI</code><br>
<code> AllowOverride All</code><br>
<code> Order allow,deny</code><br>
<code> Allow from all</code><br>
<code></Directory></code><br>
</FONT></TD></TR></TABLE><P>
<P>
After restarting Apache you should be able to visit the URL
<I><TT><A NAME="tex2html56"
HREF="http://localhost/test.cgi">http://localhost/test.cgi</A></TT></I>. If you run into problems, don't forget
to run <TT>
<FONT COLOR="#0000ff">tail /opt/apache/logs/error_log</FONT></TT> to get a full report.
<P>
To get a full list of environment variables available to your
CGI program, try the following script:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code> </code><br>
<code>echo 'Content-type: text/html'</code><br>
<code>echo</code><br>
<code>echo '<HTML>'</code><br>
<code>echo '<PRE>'</code><br>
<code>set</code><br>
<code>echo '</PRE>'</code><br>
<code>echo '</HTML>'</code><br>
</FONT></TD></TR></TABLE><P>
The script will show ordinary <TT>
<FONT COLOR="#0000ff">bash</FONT></TT> environment variables as well
as more interesting variables like
<TT>
<FONT COLOR="#0000ff">QUERY_STRING</FONT></TT>: Change your script to
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code> </code><br>
<code>echo 'Content-type: text/html'</code><br>
<code>echo</code><br>
<code>echo '<HTML>'</code><br>
<code>echo '<PRE>'</code><br>
<code>echo $QUERY_STRING</code><br>
<code>echo '</PRE>'</code><br>
<code>echo '</HTML>'</code><br>
</FONT></TD></TR></TABLE><P>
and then go to the URL <I><TT><A NAME="tex2html57"
HREF="http://localhost/test/test.cgi?xxx=2&yyy=3">http://localhost/test/test.cgi?xxx=2&yyy=3</A></TT></I>.
It is easy to see how variables can be passed to the shell script.
<P>
The preceding example is not very interesting. However, it gets useful
when scripts have complex logic or can access information that Apache
can't access on its own. In Chapter <A HREF="node41.html#chap:postgres">38</A> we see how to deploy
an SQL database. When you
have covered SQL, you can come back here and
replace your CGI script with,
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code> </code><br>
<code>echo 'Content-type: text/html'</code><br>
<code>echo</code><br>
<code> </code><br>
<code>psql -d template1 -H -c "SELECT * FROM pg_tables;"</code><br>
</FONT></TD></TR></TABLE><P>
This script will dump the table list of the <TT>
<FONT COLOR="#0000ff">template1</FONT></TT>
database if it exists. Apache will have to run as a user that can
access this database, which means changing <TT>
<FONT COLOR="#0000ff">User nobody</FONT></TT> to
<TT>
<FONT COLOR="#0000ff">User postgres</FONT></TT>. <FONT COLOR="#ffa500">[Note that for security you should <I>really</I>
limit who can connect to the <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> database. See
Section <A HREF="node41.html#sec:instinitpostgres">38.4</A>.]</FONT>
<P>
<H2><A NAME="SECTION003929000000000000000">
36.2.9 Forms and CGI</A>
</H2>
<P>
To create a functional form, use the HTTP <TT>
<FONT COLOR="#0000ff"><FORM></FONT></TT> tag as follows.
A file <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/test/form.html</FONT></TT> could contain:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>20</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>25</code></font><code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><HTML></code><br>
<code> <FORM name="myform" action="test.cgi" method="get"></code><br>
<code> <TABLE></code><br>
<code> <TR></code><br>
<code> <TD colspan="2" align="center"></code><br>
<code> Please enter your personal details:</code><br>
<code> </TD></code><br>
<code> </TR></code><br>
<code> <TR></code><br>
<code> <TD>Name:</TD><TD><INPUT type="text" name="name"></TD></code><br>
<code> </TR></code><br>
<code> <TR></code><br>
<code> <TD>Email:</TD><TD><INPUT type="text" name="email"></TD></code><br>
<code> </TR></code><br>
<code> <TR></code><br>
<code> <TD>Tel:</TD><TD><INPUT type="text" name="tel"></TD></code><br>
<code> </TR></code><br>
<code> <TR></code><br>
<code> <TD colspan="2" align="center"></code><br>
<code> <INPUT type="submit" value="Submit"></code><br>
<code> </TD></code><br>
<code> </TR></code><br>
<code> </TABLE></code><br>
<code> </FORM></code><br>
<code></HTML></code><br>
</FONT></TD></TR></TABLE><P>
which looks like:
<DIV ALIGN="CENTER">
<!-- MATH
$\epsfbox{form.ps}$
-->
<IMG
WIDTH="201" HEIGHT="192" ALIGN="BOTTOM" BORDER="0"
SRC="img69.png"
ALT="\epsfbox{form.ps}">
</DIV>
<P>
Note how this form calls our existing <TT>
<FONT COLOR="#0000ff">test.cgi</FONT></TT> script.
Here is a script that adds the entered data to a <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> SQL table:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>20</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>25</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>30</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#!/bin/sh</code><br>
<code> </code><br>
<code>echo 'Content-type: text/html'</code><br>
<code>echo</code><br>
<code> </code><br>
<code>opts=`echo "$QUERY_STRING" | \</code><br>
<code> sed -e 's/[^A-Za-z0-9 %&+,.\/:=@_~-]//g' -e 's/&/ /g' -e q`</code><br>
<code> </code><br>
<code>for opt in $opts ; do</code><br>
<code> case $opt in</code><br>
<code> name=*)</code><br>
<code> name=${opt/name=/}</code><br>
<code> ;;</code><br>
<code> email=*)</code><br>
<code> email=${opt/email=/}</code><br>
<code> ;;</code><br>
<code> tel=*)</code><br>
<code> tel=${opt/tel=/}</code><br>
<code> ;;</code><br>
<code> esac</code><br>
<code>done</code><br>
<code> </code><br>
<code>if psql -d template1 -H -c "\</code><br>
<code>INSERT INTO people (name, email, tel) \</code><br>
<code>VALUES ('$name', '$email', '$tel')" 2>&1 | grep -q '^INSERT ' ; then</code><br>
<code> echo "<HTML>Your details \"$name\", \"$email\" and \"$tel\"<BR>"</code><br>
<code> echo "have been succesfully recorded.</HTML>"</code><br>
<code>else</code><br>
<code> echo "<HTML>Database error, please contact our webmaster.</HTML>"</code><br>
<code>fi</code><br>
<code> </code><br>
<code>exit 0</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Note how the first lines of script remove all unwanted
characters from <TT>
<FONT COLOR="#0000ff">QUERY_STRING</FONT></TT>. Such processing is imperative for
security because shell scripts can easily execute commands should
characters like <TT>
<FONT COLOR="#0000ff">$</FONT></TT> and <TT>
<FONT COLOR="#0000ff">`</FONT></TT> be present in a string.
<P>
To use the alternative ``POST'' method, change your <TT>
<FONT COLOR="#0000ff">FORM</FONT></TT>
tag to
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code> <FORM name="myform" action="test.cgi" method="post"></code><br>
</FONT></TD></TR></TABLE><P>
The POST method sends the query text through stdin of the
CGI script. Hence, you need to also change your <TT>
<FONT COLOR="#0000ff">opts=</FONT></TT> line to
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>opts=`cat | \</code><br>
<code> sed -e 's/[^A-Za-z0-9 %&+,.\/:=@_~-]//g' -e 's/&/ /g' -e q`</code><br>
</FONT></TD></TR></TABLE><P>
<P>
<H2><A NAME="SECTION0039210000000000000000">
36.2.10 Setuid CGIs</A>
</H2>
<P>
<A NAME="sec:setuidcgiwrapper"></A>
<P>
Running Apache as a privileged user has security implications. Another
way to get this script to execute as user <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> is to create a
setuid binary. To do this, create a file <TT>
<FONT COLOR="#0000ff">test.cgi</FONT></TT> by compiling the
following <B>C</B> program similar to that in Section <A HREF="node36.html#sec:faxsetuidbin">33.2</A>.
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#include <unistd.h></code><br>
<code> </code><br>
<code>int main (int argc, char *argv[])</code><br>
<code>{</code><br>
<code> setreuid (geteuid (), geteuid ());</code><br>
<code> execl ("/opt/apache/htdocs/test/test.sh", "test.sh", 0);</code><br>
<code> return 0;</code><br>
<code>}</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Then run <TT>
<FONT COLOR="#0000ff">chown postgres:www test.cgi</FONT></TT> and
<TT>
<FONT COLOR="#0000ff">chmod a-w,o-rx,u+s test.cgi</FONT></TT> (or <TT>
<FONT COLOR="#0000ff">chmod 4550 test.cgi</FONT></TT>).
Recreate your shell script as <TT>
<FONT COLOR="#0000ff">test.sh</FONT></TT> and go to the URL again.
Apache runs <TT>
<FONT COLOR="#0000ff">test.cgi</FONT></TT>, which becomes user <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT>, and then
executes the script as the <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> user. Even with Apache as
<TT>
<FONT COLOR="#0000ff">User nobody</FONT></TT> your script will still work. Note how your setuid
program is insecure: it takes no arguments and performs only a single
function, but it takes environment variables (or input from stdin)
that could influence its functionality. If a login user could execute
the script, that user could send data via these variables that could cause
the script to behave in an unforeseen way. An alternative is:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>#include <unistd.h></code><br>
<code> </code><br>
<code>int main (int argc, char *argv[])</code><br>
<code>{</code><br>
<code> char *envir[] = {0};</code><br>
<code> setreuid (geteuid (), geteuid ());</code><br>
<code> execle ("/opt/apache/htdocs/test/test.sh", "test.sh", 0, envir);</code><br>
<code> return 0;</code><br>
<code>}</code><br>
</FONT></TD></TR></TABLE><P>
This script nullifies the environment before starting the CGI, thus
forcing you to use the POST method only. Because the only information
that can be passed to the script is a single line of text (through the
<TT>
<FONT COLOR="#0000ff">-e q</FONT></TT> option to <TT>
<FONT COLOR="#0000ff">sed</FONT></TT>) and because that line of text is
carefully stripped of unwanted characters, we can be much more certain
of security.
<P>
<H2><A NAME="SECTION0039211000000000000000">
36.2.11 Apache modules and PHP</A>
</H2>
<P>
CGI execution is extremely slow if Apache has to invoke a shell
script for each hit. Apache has a number of facilities for built-in
interpreters that will parse script files with high efficiency.
A well-known programming language developed specifically for
the Web is PHP. PHP can be downloaded as source from
<EM>The PHP Home Page</EM> <I><<TT><A NAME="tex2html58"
HREF="http://www.php.net">http://www.php.net</A></TT>></I> and contains the
usual GNU installation instructions.
<P>
Apache has the facility for adding functionality at runtime
using what it calls DSO
(<I>Dynamic Shared Object</I>) files. This feature
is for distribution vendors who want to ship split installs of Apache
that enable users to install only the parts of Apache they like. This is
conceptually the same as what we saw in Section <A HREF="node26.html#sec:sharedobj">23.1</A>: To
give your program some extra feature provided by some library, you can
<I>either</I> statically link the library to your program <I>or</I>
compile the library as a shared <TT>
<FONT COLOR="#0000ff">.so</FONT></TT> file to be linked at run
time. The difference here is that the library files are (usually) called
<TT>
<FONT COLOR="#0000ff">mod_</FONT></TT><I>name</I> and are stored in <TT>
<FONT COLOR="#0000ff">/opt/apache/libexec/</FONT></TT>.
They are also only loaded if a
<TT>
<FONT COLOR="#0000ff">LoadModule </FONT></TT><I>name</I><TT>
<FONT COLOR="#0000ff">_module</FONT></TT> appears in
<TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT>. To enable DSO support, rebuild and reinstall Apache
starting with:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>./configure --prefix=/opt/apache --enable-module=so</code><br>
</FONT></TD></TR></TABLE><P>
<P>
Any source package that creates an Apache module can now use
the Apache utility <TT>
<FONT COLOR="#0000ff">/opt/apache/bin/apxs</FONT></TT> to tell it about the
current Apache installation, so you should make sure this executable
is in your <TT>
<FONT COLOR="#0000ff">PATH</FONT></TT>.
<P>
You can now follow the instructions for installing PHP,
possibly beginning with
<TT>
<FONT COLOR="#0000ff">./configure --prefix=/opt/php --with-apxs=/opt/apache/bin/apxs --with-pgsql=/usr</FONT></TT>. (This assumes that
you want to enable support for the <TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> SQL database and have
<TT>
<FONT COLOR="#0000ff">postgres</FONT></TT> previously installed as a package under <TT>
<FONT COLOR="#0000ff">/usr</FONT></TT>.)
Finally, check that a file <TT>
<FONT COLOR="#0000ff">libphp4.so</FONT></TT> eventually ends up in
<TT>
<FONT COLOR="#0000ff">/opt/apache/libexec/</FONT></TT>.
<P>
Your <TT>
<FONT COLOR="#0000ff">httpd.conf</FONT></TT> then needs
to know about PHP scripts. Add the
following lines
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>LoadModule php4_module /opt/apache/libexec/libphp4.so</code><br>
<code>AddModule mod_php4.c</code><br>
<code>AddType application/x-httpd-php .php</code><br>
</FONT></TD></TR></TABLE><P>
and then create a file <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/hello.php</FONT></TT> containing
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code><html></code><br>
<code><head></code><br>
<code><title>Example</title></code><br>
<code></head></code><br>
<code><body></code><br>
<code><?php echo "Hi, I'm a PHP script!"; ?></code><br>
<code></body></code><br>
<code></html></code><br>
</FONT></TD></TR></TABLE><P>
and test by visiting the URL <I><TT><A NAME="tex2html59"
HREF="http://localhost/hello.php">http://localhost/hello.php</A></TT></I>.
<P>
Programming in the PHP language is beyond the scope of this book.
<P>
<H2><A NAME="SECTION0039212000000000000000">
36.2.12 Virtual hosts</A>
</H2>
<P>
Virtual hosting is the use of a single web server to serve the web pages of
multiple domains. Although the web browser seems to be connecting to
a web site that is an isolated entity, that web site may in fact be
hosted alongside many others on the same machine.
<P>
Virtual hosting is rather trivial to configure. Let us say that we have
three domains: <TT>
<FONT COLOR="#0000ff">www.domain1.com</FONT></TT>, <TT>
<FONT COLOR="#0000ff">www.domain2.com</FONT></TT>,
and <TT>
<FONT COLOR="#0000ff">www.domain3.com</FONT></TT>. We want domains <TT>
<FONT COLOR="#0000ff">www.domain1.com</FONT></TT> and
<TT>
<FONT COLOR="#0000ff">www.domain2.com</FONT></TT> to share IP address <TT>
<FONT COLOR="#0000ff">196.123.45.1</FONT></TT>, while
<TT>
<FONT COLOR="#0000ff">www.domain3.com</FONT></TT> has its own IP address of <TT>
<FONT COLOR="#0000ff">196.123.45.2</FONT></TT>.
The sharing of a single IP address is called <I>name-based virtual hosting</I>,
and
the use of a different IP address for each domain is called
<I>IP-based virtual hosting</I>.
<P>
If our machine has one IP address, <TT>
<FONT COLOR="#0000ff">196.123.45.1</FONT></TT>,
we may need to configure a separate IP address on the
same network card as follows (see Section <A HREF="node28.html#ref:interfacealiasing">25.9</A>):
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>ifconfig eth0:1 196.123.45.2 netmask 255.255.255.0 up</code><br>
</FONT></TD></TR></TABLE><P>
For each domain <TT>
<FONT COLOR="#0000ff">/opt/apache/htdocs/www.domain</FONT></TT><I>?</I><TT>
<FONT COLOR="#0000ff">.com/</FONT></TT>,
we now create a top-level directory.
We need to tell Apache that we intend to use the IP
address <TT>
<FONT COLOR="#0000ff">196.123.45.1</FONT></TT> for several hosts. We do that
with the <TT>
<FONT COLOR="#0000ff">NameVirtualHost</FONT></TT> directive.
Then for each host, we must specify a top-level directory as follows:
<P><TABLE nowrap="1" width="100%" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD valign="top" class="source" width="2%"><FONT color=red>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>5</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>10</code></font><code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<code> </code><br>
<font size="-1"><code>15</code></font><code> </code><br>
<code> </code><br>
</FONT></TD><TD valign="top" class="source" bgcolor="#FFE0C0"><FONT color=blue>
<code>NameVirtualHost 196.123.45.1</code><br>
<code> </code><br>
<code><VirtualHost 196.123.45.1></code><br>
<code> ServerName www.domain1.com</code><br>
<code> DocumentRoot /opt/apache/htdocs/www.domain1.com/</code><br>
<code></VirtualHost></code><br>
<code> </code><br>
<code><VirtualHost 196.123.45.1></code><br>
<code> ServerName www.domain2.com</code><br>
<code> DocumentRoot /opt/apache/htdocs/www.domain2.com/</code><br>
<code></VirtualHost></code><br>
<code> </code><br>
<code><VirtualHost 196.123.45.2></code><br>
<code> ServerName www.domain3.com</code><br>
<code> DocumentRoot /opt/apache/htdocs/www.domain3.com/</code><br>
<code></VirtualHost></code><br>
</FONT></TD></TR></TABLE><P>
All that remains is to configure a correct DNS zone for each
domain so that lookups of <TT>
<FONT COLOR="#0000ff">www.domain1.com</FONT></TT> and
<TT>
<FONT COLOR="#0000ff">www.domain2.com</FONT></TT> return <TT>
<FONT COLOR="#0000ff">196.123.45.1</FONT></TT> while lookups of
<TT>
<FONT COLOR="#0000ff">www.domain3.com</FONT></TT> return <TT>
<FONT COLOR="#0000ff">196.123.45.2</FONT></TT>.
<P>
You can then add <TT>
<FONT COLOR="#0000ff">index.html</FONT></TT> files to
each directory.
<P>
<P>
<HR>
<!--Navigation Panel-->
<A NAME="tex2html2666"
HREF="node40.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
<A NAME="tex2html2662"
HREF="rute.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
<A NAME="tex2html2656"
HREF="node38.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
<A NAME="tex2html2664"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html2667"
HREF="node40.html">37. crond and atd</A>
<B> Up:</B> <A NAME="tex2html2663"
HREF="rute.html">rute</A>
<B> Previous:</B> <A NAME="tex2html2657"
HREF="node38.html">35. The LINUX File</A>
  <B> <A NAME="tex2html2665"
HREF="node1.html">Contents</A></B>
<!--End of Navigation Panel-->
</BODY>
</HTML>
|