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
|
<HTML><HEAD>
<TITLE>Configuration -- Configuration File Reference</TITLE>
<LINK rel=Previous href="con-ch2.htm">
<LINK rel=ToC href="toc.htm">
<LINK rel=Index href="master.htm">
<LINK rel=Next href="con-ch4.htm">
</HEAD><BODY BGCOLOR="#ffffff"><A NAME="topofpage"></A>
<TABLE WIDTH=100%>
<TR>
<TD ALIGN=LEFT>
<A NAME="topofpage"></A> <IMG SRC="as-c-sm.gif">
</TD>
<TD ALIGN=RIGHT>
<A href="con-ch2.htm"><IMG BORDER="0" src=navbprev.gif alt="[ Previous ]"></A>
<A href=toc.htm> <IMG BORDER="0" src=navbhome.gif alt="[ Contents ]"></A>
<A href=master.htm> <IMG BORDER="0" src=navbhelp.gif alt="[ Index ]"></A>
<A href="con-ch4.htm"> <IMG BORDER="0" src=navbnext.gif alt="[ Next ]"></A>
<A name="7983"> </A>
</TD>
</TR>
</TABLE>
<a name="155138">
</a><h3>Configuration File Reference</h3>
<p><a name="24540">
</a>The following tables describe all the possible parameters that can be set in each section of the configuration file. Note that some sections are not necessary at all if a specific capability is not included. For example, you don't need a section configuring the nslog module for a server if that server does not include the nslog module.</p>
<a name="24463">
</a><h4>Note on Boolean Parameter Values: </h4>
<p><a name="26056">
</a>There are several ways to specify a boolean parameter value. The reference tables below use "on" for true and "off" for false. However, any of the following values are valid:<Table Border = "3">
<tr><td><p><a name="26086">
</a><b>Boolean Value</b></p>
<td><p><a name="26088">
</a><b>Equivalent Boolean Values</b></p>
<tr><td><p><a name="26059">
</a>on</p>
<td><p><a name="26061">
</a>y, yes, t, true, 1 (one)</p>
<tr><td><p><a name="26063">
</a>off</p>
<td><p><a name="26065">
</a>n, no, f, false, 0 (zero)</p>
</Table></p>
<a name="24432">
</a><h4>The Parameters Section</h4>
<a name="14541">
</a><h4>ns/parameters</h4>
<p><a name="14851">
</a>This section is used to specify global AOLserver parameters.<Table Border = "3">
<tr><th><p><a name="123618">
</a>Parameter</p>
<th><p><a name="123620">
</a><b>Default Value</b></p>
<th><p><a name="123622">
</a><b>Description</b></p>
<tr><td><p><a name="123636">
</a>AuxConfigDir</p>
<td><p><a name="123638">
</a></p>
<td><p><a name="123640">
</a>A directory containing additional configuration files whose contents will be merged with the primary configuration file. After loading the primary configuration file (the value of the -c parameter on the nsd command line, usually nsd.ini), any files in the directory specified by AuxConfigDir with an .ini extension are loaded in alphabetical order.</p>
<p><a name="123641">
</a>If a configuration file section in an auxiliary configuration file already exists in the primary configuration file, the key/value pairs in that section are added to the end of the existing section from the primary configuration file. If, as a result, a specific parameter is set more than once in a section, the first setting will be used. Therefore, a parameter set in an auxiliary configuration file cannot override the same parameter set in the primary configuration file or in an auxiliary configuration file loaded before it. Some parameters, such as the Map parameters in the CGI section, can have multiple settings. In this case, all Map parameter settings will be used.</p>
<tr><td><p><a name="123653">
</a>CheckExitCode</p>
<td><p><a name="123655">
</a>off</p>
<td><p><a name="123657">
</a>Boolean value. If set to on, an error is reported when a child process exits with a non-zero status.</p>
<tr><td><p><a name="123667">
</a>CrashCmd</p>
<td><p><a name="123669">
</a></p>
<td><p><a name="123671">
</a>The name of a Tcl function which, when executed, will crash the server.</p>
<tr><td><p><a name="123674">
</a>Debug</p>
<td><p><a name="123676">
</a>off</p>
<td><p><a name="123678">
</a>Boolean value. If set to on, debug messages will be printed to the global server log. <b>Note:</b> Setting Debug on will produce a large amount of debug output.</p>
<tr><td><p><a name="123682">
</a>DNSCache</p>
<td><p><a name="123684">
</a>on</p>
<td><p><a name="123686">
</a>Boolean. If set to on, enables DNS cache to speed lookup of remote IP addresses. Since the DNS cache can dramatically speed lookup time, especially in the case of a busy server with the nslog module set to resolve host names, it is recommended that DNSCache be left on.</p>
<tr><td><p><a name="123696">
</a>DNSCacheTimeout</p>
<td><p><a name="123698">
</a>60</p>
<td><p><a name="123700">
</a>The number of minutes between cache purges for the DNS cache.</p>
<tr><td><p><a name="123703">
</a>Gid</p>
<td><p><a name="123705">
</a>(If neither Gid nor Group is set, the default group of the user specified by the User parameter is used.)</p>
<td><p><a name="123707">
</a>Unix group number.</p>
<tr><td><p><a name="123710">
</a>Group</p>
<td><p><a name="123712">
</a>(If neither Gid nor Group is set, the default group of the user specified by the User parameter is used.)</p>
<td><p><a name="123714">
</a>Unix group name. This parameter is ignored if the gid parameter is set.</p>
<tr><td><p><a name="123717">
</a>Home</p>
<td><p><a name="123719">
</a></p>
<td><p><a name="123724">
</a>The AOLserver home directory (the directory where AOLserver was installed). This parameter is required.</p>
<tr><td><p><a name="123730">
</a>ListenBacklog</p>
<td><p><a name="123732">
</a>32</p>
<td><p><a name="123734">
</a>The maximum length of the queue of pending connections.</p>
<tr><td><p><a name="123746">
</a>LogMaxBackup</p>
<td><p><a name="123748">
</a>10</p>
<td><p><a name="123750">
</a>The maximum number of server log backup files.</p>
<tr><td><p><a name="123762">
</a>LogRoll</p>
<td><p><a name="123764">
</a>on</p>
<td><p><a name="123766">
</a>Boolean value. If set to on, the server log file will be rolled on a SIGHUP.</p>
<tr><td><p><a name="123801">
</a>MailHost</p>
<td><p><a name="123803">
</a>localhost</p>
<td><p><a name="123808">
</a>The SMTP server AOLserver should use when sending email using the Tcl ns_sendmail function.</p>
<tr><td><p><a name="123853">
</a>PidFile</p>
<td><p><a name="123855">
</a><i>serverhome</i>/log</p>
<p><a name="123856">
</a>/nspid.<i>setup-server-port</i></p>
<td><p><a name="123858">
</a>The pathname of the file where the server puts its <code>pid</code>.</p>
<tr><td><p><a name="123896">
</a>ServerLog</p>
<td><p><a name="123898">
</a>/log/server.log under the AOLserver home directory</p>
<td><p><a name="123903">
</a>The file to contain any notices, warnings, or errors generated by AOLserver if AOLserver is run as a background process. If AOLserver is run in the foreground, messages are written to standard output, and this parameter is ignored.</p>
<tr><td><p><a name="124011">
</a>SockNoWarn</p>
<td><p><a name="124013">
</a>off</p>
<td><p><a name="124023">
</a>Boolean value. If set to on, errors encountered while making outgoing tcp connections will be logged.</p>
<tr><td><p><a name="123932">
</a>StackSize</p>
<td><p><a name="123934">
</a>SGI and DEC OSF: 32000</p>
<p><a name="123935">
</a>All others: the operating system default</p>
<td><p><a name="123937">
</a>The thread stack size. You may need to increase this parameter if an AOLserver request function or Tcl script is deeply nested, exhausting the stack space of the thread. If AOLserver is configured to use ADPs, for example, you may want to increase the thread stack size to 128K or more.</p>
<tr><td><p><a name="123943">
</a>Uid</p>
<td><p><a name="123945">
</a></p>
<td><p><a name="123947">
</a>Unix uid which can be set instead of setting the User parameter.</p>
<tr><td><p><a name="123964">
</a>User</p>
<td><p><a name="123966">
</a></p>
<td><p><a name="123971">
</a>The user name that AOLserver is to be run as. If you start the AOLserver as the root user, you must set this parameter. If you have selected a port number below 1024 (a "privileged" port), you will need to start the AOLserver as the "root" and specify a Unix user for the server to change to after it acquires the port. If your port number is greater than 1024, you can leave this blank.</p>
</Table></p>
<a name="37590">
</a><h4>The MIME Types Section</h4>
<p><a name="87275">
</a>The ns/mimetypes configuration file section allows you to have global settings for MIME types. </p>
<a name="87245">
</a><h4>ns/mimetypes</h4>
<p><a name="87319">
</a>This section is used to map file name extensions to the content-type headers returned to browsers. Each parameter specifies an extension and the type to return. Any extension and content-type pair specified here will either override the default setting (if the extension is the same as a default extension) or be added to the default settings (if the extension does not exist in the default settings).<Table Border = "3">
<tr><th><p><a name="87294">
</a><b>Parameter</b></p>
<th><p><a name="87296">
</a><b>Default Value</b></p>
<th><p><a name="87298">
</a><b>Description</b></p>
<tr><td><p><a name="87301">
</a>Default</p>
<td><p><a name="87303">
</a></p>
<td><p><a name="87305">
</a>The default MIME type to use if there is no explicit mapping specified for a file name extension.</p>
<tr><td><p><a name="87314">
</a>NoExtension</p>
<td><p><a name="87316">
</a></p>
<td><p><a name="87318">
</a>The MIME type to use for files with no extension.</p>
<tr><td><p><a name="87472">
</a><i>file-extension</i></p>
<td><p><a name="87474">
</a><i>type </i>(default MIME types listed below)</p>
<td><p><a name="87476">
</a>A content-type to return in the header information for the specified file extension.</p>
</Table></p>
<p><a name="87286">
</a>The default MIME type parameter definitions are:</p>
<pre> <a name="87485"></a>.ai application/postscript
<a name="87486"></a>.aif audio/aiff
<a name="87487"></a>.aiff audio/aiff
<a name="87488"></a>.ani application/x-navi-animation
<a name="87489"></a>.art image/x-art
<a name="87490"></a>.au audio/basic
<a name="87491"></a>.avi video/x-msvideo
<a name="87492"></a>.bin application/x-macbinary
<a name="87493"></a>.bmp image/bmp
<a name="87494"></a>.dcr application/x-director
<a name="87495"></a>.dir application/x-director
<a name="87496"></a>.dp application/commonground
<a name="87497"></a>.dxr application/x-director
<a name="87498"></a>.elm text/plain
<a name="87499"></a>.exe application/octet-stream
<a name="87500"></a>.gbt text/plain
<a name="87501"></a>.gif image/gif
<a name="87502"></a>.gz application/x-compressed
<a name="87503"></a>.hqx application/mac-binhex40
<a name="87504"></a>.htm text/html
<a name="87505"></a>.html text/html
<a name="87506"></a>.jfif image/jpeg
<a name="87507"></a>.jpe image/jpeg
<a name="87508"></a>.jpg image/jpeg
<a name="87509"></a>.jpeg image/jpeg
<a name="87510"></a>.js application/x-javascript
<a name="87511"></a>.ls application/x-javascript
<a name="87512"></a>.map application/x-navimap
<a name="87513"></a>.mocha application/x-javascript
<a name="87514"></a>.mov video/quicktime
<a name="87515"></a>.mpe video/mpeg
<a name="87516"></a>.mpeg video/mpeg
<a name="87517"></a>.mpg video/mpeg
<a name="87518"></a>.nvd application/x-navidoc
<a name="87519"></a>.nvm application/x-navimap
<a name="87520"></a>.pbm image/x-portable-bitmap
<a name="87521"></a>.pdf application/pdf
<a name="87522"></a>.pgm image/x-portable-graymap
<a name="87523"></a>.pic image/pict
<a name="87524"></a>.pict image/pict
<a name="87525"></a>.pnm image/x-portable-anymap
<a name="87526"></a>.ps application/postscript
<a name="87527"></a>.qt video/quicktime
<a name="87528"></a>.ra audio/x-pn-realaudio
<a name="87529"></a>.ram audio/x-pn-realaudio
<a name="87530"></a>.ras image/x-cmu-raster
<a name="87531"></a>.rgb image/x-rgb
<a name="87532"></a>.rtf application/rtf
<a name="87533"></a>.sit application/x-stuffit
<a name="87534"></a>.snd audio/basic
<a name="87535"></a>.stl application/x-navistyle
<a name="87536"></a>.tar appliation/x-tar
<a name="87537"></a>.text text/plain
<a name="87538"></a>.tgz application/x-compressed
<a name="87539"></a>.tif image/tiff
<a name="87540"></a>.tiff image/tiff
<a name="87541"></a>.txt text/plain
<a name="87542"></a>.vrml x-world/x-vrml
<a name="87543"></a>.wav audio/x-wav
<a name="87544"></a>.wrl x-world/x-vrml
<a name="87545"></a>.xbm image/x-xbitmap
<a name="87546"></a>.xpm image/x-xpixmap
<a name="87547"></a>.z application/x-compressed
<a name="87481"></a>.zip application/x-compressed
</pre><p><a name="7928">
</a><h4>The Servers Sections</h4>
<a name="7980">
</a><h4>ns/servers</h4>
<p><a name="14879">
</a>This section lists (and names) each of the servers that are to be run within the AOLserver process.<Table Border = "3">
<tr><th><p><a name="10073">
</a><b>Parameter</b></p>
<th><p><a name="10075">
</a><b>Possible Values</b></p>
<th><p><a name="10077">
</a><b>Description</b></p>
<tr><td><p><a name="10079">
</a><i>server-name</i></p>
<td><p><a name="10081">
</a>"<i>description text</i>"</p>
<td><p><a name="10083">
</a>The name (user-defined) of a server, which must be all lowercase. The <i>description text</i> can be any user-defined comments.</p>
</Table></p>
<a name="7987">
</a><h4>ns/server/server-name</h4>
<p><a name="15112">
</a>This section configures a server. There should be one of these sections for each server listed in the ns/servers section <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="93711">
</a><b>Parameter</b></p>
<th><p><a name="93713">
</a><b>Default Value</b></p>
<th><p><a name="93715">
</a><b>Description</b></p>
<tr><td><p><a name="156726">
</a>ConnsPerThread</p>
<td><p><a name="156728">
</a>100</p>
<td><p><a name="156730">
</a>After the specified number of connections, a connection thread will exit. This parameter is useful for working around memory leaks in Tcl code.</p>
<tr><td><p><a name="124318">
</a>DirectoryFile</p>
<td><p><a name="124320">
</a>index.htm, index.html</p>
<td><p><a name="124322">
</a>A comma-separated list of default files to get if the URL specifies only a directory. For example:</p>
<p><a name="124323">
</a><code>DirectoryFile "index.htm,index.html"</code></p>
<p><a name="124324">
</a>This server will try each of the filenames in the list, left to right.</p>
<tr><td><p><a name="124560">
</a>EnableAOLpress</p>
<td><p><a name="124562">
</a>on</p>
<td><p><a name="124564">
</a>If set to on, "NaviServer/2.0 " is prepended to the Server: output header.</p>
<tr><td><p><a name="124566">
</a>KeepAliveTimeout</p>
<td><p><a name="124568">
</a>30</p>
<td><p><a name="124592">
</a>Number of seconds after which to hang up on clients while waiting for an HTTP request in a connection: keep-alive situation.</p>
<tr><td><p><a name="124572">
</a>MaxConnections</p>
<td><p><a name="124574">
</a>100</p>
<td><p><a name="124843">
</a>Maximum number of concurrent HTTP connections (should be equal to MaxThreads).</p>
<tr><td><p><a name="124353">
</a>MaxThreads</p>
<td><p><a name="124355">
</a>50</p>
<td><p><a name="124359">
</a>The maximum number of threads this server can use within the AOLServer process. If more threads are requested than MaxThreads, the requests will be forced to wait until the number of waiting requests drops below MaxThreads.</p>
<tr><td><p><a name="124877">
</a>MaxKeepAlive</p>
<td><p><a name="124879">
</a>100</p>
<td><p><a name="124889">
</a>Maximum number of connections which can use HTTP keep-alive; should be equal to MaxConnections,</p>
<tr><td><p><a name="124416">
</a>MinThreads</p>
<td><p><a name="124418">
</a>0</p>
<td><p><a name="124423">
</a>The number of threads in the AOLserver process to initialize when this server is started.</p>
<tr><td><p><a name="124427">
</a>PageRoot</p>
<td><p><a name="124429">
</a>/servers/<i>server</i>/pages</p>
<td><p><a name="124431">
</a>Directory where pages and graphics for this server are stored.</p>
<tr><td><p><a name="124925">
</a>Realm</p>
<td><p><a name="124927">
</a></p>
<td><p><a name="124937">
</a>The realm in which to request authentication when returning a "401 Unauthorized" error.</p>
<tr><td><p><a name="124919">
</a>SockTimeout</p>
<td><p><a name="124921">
</a>30</p>
<td><p><a name="124949">
</a>Number of seconds to wait for an HTTP request before closing the connection.</p>
<tr><td><p><a name="124913">
</a>ThreadTimeout</p>
<td><p><a name="124915">
</a>120</p>
<td><p><a name="124964">
</a>Number of seconds for threads to live with no connection.</p>
</Table></p>
<p><a name="50685">
</a></p>
<a name="75330">
</a><h4>ns/server/server-name/adp</h4>
<p><a name="75464">
</a>This section is used to configure AOLserver Dynamic Pages (ADPs). <Table Border = "3">
<tr><th><p><a name="76638">
</a><b>Parameter</b></p>
<th><p><a name="76640">
</a><b>Default Value</b></p>
<th><p><a name="76642">
</a><b>Description</b></p>
<tr><td><p><a name="123219">
</a>Cache</p>
<td><p><a name="123221">
</a>on</p>
<td><p><a name="123223">
</a>Boolean value. If set to on, ADP caching is enabled.</p>
<tr><td><p><a name="136946">
</a>DebugInit</p>
<td><p><a name="136948">
</a>"ns_adp_debuginit"</p>
<td><p><a name="136950">
</a>The procedure to run when debugging begins.</p>
<tr><td><p><a name="157065">
</a>DefaultParser</p>
<td><p><a name="157067">
</a>"adp"</p>
<td><p><a name="157069">
</a>The default parser to use for ADPs with a file extension that is not associated with a parser in the ns/server/server-name/adp/parsers section. For example:</p>
<pre> <a name="157539"></a>ns_section "ns/server/server1/adp"
<a name="157540"></a>ns_param "map" "/*.adp"
<a name="157541"></a>ns_param "map" "/*.inc"
<a name="157542"></a>ns_param "map" "/*.fadp"
<a name="157543"></a>ns_param "DefaultParser" "adp"
</pre><p>
<tr><td><p><a name="123231">
</a>EnableExpire</p>
<td><p><a name="123233">
</a>off</p>
<td><p><a name="123235">
</a>Boolean value. If set to on, the "Expires: now" header is set on all outgoing ADPs.</p>
<tr><td><p><a name="123243">
</a>EnableDebug</p>
<td><p><a name="123245">
</a>off</p>
<td><p><a name="123247">
</a>Boolean value. If set to on, appending "?debug" to a URL will enable TclPro debugging.</p>
<tr><td><p><a name="76644">
</a>Map</p>
<td><p><a name="76646">
</a></p>
<td><p><a name="76648">
</a>The Map parameter specifies which pages the server will parse. You can specify a file extension (such as /*.adp) or a directory (such as /usr/pages/adp). If no directory is specified, the pages directory is assumed. The wildcards * ? and [] can be included in the Map specification. You can specify multiple Map settings.</p>
<p><a name="76649">
</a>The following example specifies that all files in the pages directory with the extensions .adp or .asp will be parsed, and all files in the /usr/pages/myadps directory will be parsed.</p>
<pre> <a name="76650"></a>Map "/*.adp"
<a name="76651"></a>Map "/*.asp"
<a name="76652"></a>Map "/foo/myadps"
</pre><p>
<tr><td><p><a name="123501">
</a>StartPage</p>
<td><p><a name="123503">
</a></p>
<td><p><a name="123507">
</a>The file to be run on every connection instead of the requested ADP. It can be used to perform routine initialization. It would then usually include the requested ADP by calling:</p>
<p><a name="123505">
</a>ns_adp_include [ns_adp_argv 0]</p>
<tr><td><p><a name="93505">
</a>TagLocks</p>
<td><p><a name="93507">
</a>off</p>
<td><p><a name="123569">
</a>Boolean value. If set to on, ADP tags may be registered after server startup. Pages will be served less quickly when this is turned on.</p>
<p><a name="123565">
</a>If set to off, ADP tags can only be registered before the first ADP is served.</p>
</Table></p>
<a name="157087">
</a><h4>ns/server/server-name/adp/parsers</h4>
<p><a name="157570">
</a>This section is used to configure ADP parsers. For more information on ADP parsers, see <a href="tadp-ch9.htm#23840">page 10</a> of the <i>AOLserver Tcl Developer's Guide</i>.<Table Border = "3">
<tr><th><p><a name="157094">
</a><b>Parameter</b></p>
<th><p><a name="157096">
</a><b>Valid Value</b></p>
<th><p><a name="157098">
</a><b>Description</b></p>
<tr><td><p><a name="157115">
</a><i>parser-name</i></p>
<td><p><a name="157117">
</a><i>file-extension</i></p>
<td><p><a name="157119">
</a>An association between an ADP parser and a file extension. The specified parser will be used to parse all ADPs with the specified file extension.</p>
<p><a name="157398">
</a>Two pre-defined parsers, "adp" and "fancy", are already registered. You can register additional parsers with the Ns_AdpRegisterParser C API function. For example:</p>
<pre> <a name="157460"></a>ns_section "ns/server/server1/adp/parsers"
<a name="157461"></a>ns_param "adp" ".adp"
<a name="157462"></a>ns_param "fancy" ".fadp"
</pre><p>
</Table></p>
<a name="67160">
</a><h4>ns/server/server-name/db</h4>
<p><a name="67161">
</a>This section specifies the database pools that will be accesible by a server. The available database pools are listed in the ns/db/pools section. There should be one of these sections for each server <i>if</i> you want to restrict a server's access to a subset of the available database pools.<Table Border = "3">
<tr><th><p><a name="67164">
</a><b>Parameter</b></p>
<th><p><a name="67166">
</a><b>Default Value</b></p>
<th><p><a name="67168">
</a><b>Description</b></p>
<tr><td><p><a name="67171">
</a>DefaultPool</p>
<td><p><a name="67173">
</a></p>
<td><p><a name="67175">
</a>The default pool for the <code>ns_conn db</code> and <code>ns_db gethandle</code> Tcl functions to access.</p>
<tr><td><p><a name="67178">
</a>Pools</p>
<td><p><a name="67180">
</a>(no database pools are accessible by default)</p>
<td><p><a name="67182">
</a>A comma-delimited list of pool names specifying the pools that are to be accessible from this server, or "*" to signify that all pools should be accessible.</p>
<p><a name="67183">
</a>The available pools are listed in the ns/db/pools section.</p>
</Table></p>
<a name="125264">
</a><h4>ns/server/server-name/fastpath</h4>
<p><a name="125265">
</a>This section configures fastpath for a specific server. There should be one of these sections for each server <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="125268">
</a><b>Parameter</b></p>
<th><p><a name="125270">
</a><b>Default Value</b></p>
<th><p><a name="125272">
</a><b>Description</b></p>
<tr><td><p><a name="125274">
</a>DirectoryFile</p>
<td><p><a name="125502">
</a>index.htm, index.html</p>
<td><p><a name="125504">
</a>A comma-separated list of default files to get if the URL specifies only a directory. For example:</p>
<p><a name="125505">
</a><code>DirectoryFile "index.htm,index.html"</code></p>
<p><a name="125506">
</a>This server will try each of the filenames in the list, left to right.</p>
<tr><td><p><a name="125408">
</a>MMap</p>
<td><p><a name="125410">
</a>off</p>
<td><p><a name="125553">
</a>If set to on, uses the potentially faster mmap method of sending files. Not all socket drivers implement this.</p>
<tr><td><p><a name="125402">
</a>Cache</p>
<td><p><a name="125404">
</a>on</p>
<td><p><a name="125406">
</a>If set to on, enables file caching.</p>
<tr><td><p><a name="125396">
</a>CacheMaxEntry</p>
<td><p><a name="125398">
</a>8192</p>
<td><p><a name="125400">
</a>Maximum size of a file to cache. Files larger than this won't be cached.</p>
<tr><td><p><a name="125390">
</a>CacheMaxSize</p>
<td><p><a name="125392">
</a>5120000</p>
<td><p><a name="125610">
</a>Maximum size for file cache, per thread. The actual maximum memory usage will be this number times MaxThreads.</p>
<tr><td><p><a name="125384">
</a>PageRoot</p>
<td><p><a name="125547">
</a>/servers/<i>server</i>/pages</p>
<td><p><a name="125549">
</a>Directory where pages and graphics for this server are stored.</p>
</Table></p>
<p><a name="125337">
</a></p>
<a name="146964">
</a><h4>ns/server/server-name/realms</h4>
<p><a name="147018">
</a>This section configures realms for a specific server. There should be one of these sections for each server if you want to change any of the default settings for the parameters..<Table Border = "3">
<tr><th><p><a name="147007">
</a><b>Parameter</b></p>
<th><p><a name="147009">
</a><b>Default Value</b></p>
<th><p><a name="147011">
</a><b>Description</b></p>
<tr><td><p><a name="147013">
</a><i>realm-name</i></p>
<td><p><a name="147015">
</a><i>filename</i></p>
<td><p><a name="147017">
</a>Define a path and file name for the named realm. A realm lets you redirect logging from individual modules to different files, instead of having all messages go to the server log. For example:</p>
<pre> <a name="147240"></a>ns_section "ns/servers/server1/realms"
<a name="147241"></a>ns_param realm1 "/usr/tmp/realm1.out"
<a name="147232"></a>ns_param realm2 "/usr/tmp/realm2.out"
</pre><p><p><a name="147052">
</a>The following realms are already defined:</p>
nsd.adp: ADP-related messages
<a name="147063">
</a>nsd.cache: Messages from the ADP and Fastpath cache
<a name="147064">
</a>nsd.db: Database messages
<a name="147065">
</a>nsd.dns: DNS lookup messages
<a name="147066">
</a>nsd.fastpath: Fastpath messages
<a name="147067">
</a>nsd.pidfile: Messages dealing with PID file
<a name="147068">
</a>nsd.return: Messages while sending data to a client
<a name="147069">
</a>nsd.sched: Messages from scheduled procs API
<a name="147070">
</a>nsd.socket: Messages occuring during socket communications (not HTTP)
<a name="147071">
</a>nsd.tcl: Tcl messagse
<a name="147072">
</a>nsd.geturl: Messages while fetching external web pages
<a name="147057">
</a><p><a name="147272">
</a>The nsperm, nscgi, nscp, nslog, and nsvhr modules all register realms with the name they're given in the ns/servers/server-name/modules section of the configuration file.</p>
</Table></p>
<p><a name="146965">
</a></p>
<a name="125010">
</a><h4>ns/server/server-name/redirects</h4>
<p><a name="125015">
</a>This section configures redirects for a specific server. There should be one of these sections for each server <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="125018">
</a><b>Parameter</b></p>
<th><p><a name="125020">
</a><b>Default Value</b></p>
<th><p><a name="125022">
</a><b>Description</b></p>
<tr><td><p><a name="125025">
</a><i>status</i></p>
<td><p><a name="125027">
</a><i>url</i></p>
<td><p><a name="125030">
</a>When returning the specified <i>status</i>, send a redirect to the specified <i>url</i>. You can define multiple <i>status</i> and <i>url</i> pairs.</p>
</Table></p>
<p><a name="125012">
</a></p>
<a name="67828">
</a><h4>ns/server/server-name/tcl</h4>
<p><a name="67829">
</a>This section configures Tcl for a specific server. There should be one of these sections for each server <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="67832">
</a><b>Parameter</b></p>
<th><p><a name="67834">
</a><b>Default Value</b></p>
<th><p><a name="67836">
</a><b>Description</b></p>
<tr><td><p><a name="67839">
</a>AutoClose</p>
<td><p><a name="67841">
</a>on</p>
<td><p><a name="67843">
</a>If AutoClose is on, all non-shared files opened by an individual interpreter in the group will be closed when Ns_TclDeAllocateInterp is invoked. (Other interpreters in the group are not affected.) Ns_TclDeAllocateInterp is called after each Tcl request procedure. </p>
<p><a name="67845">
</a>It is recommended that you leave the AutoClose parameter set to on and share files between interpreters.</p>
<tr><td><p><a name="124039">
</a>Debug</p>
<td><p><a name="124041">
</a>Off</p>
<td><p><a name="124043">
</a>Boolean value. If set to On, names of files sourced during startup are written to the server log.</p>
<tr><td><p><a name="124047">
</a>Library</p>
<td><p><a name="124049">
</a>/servers/server1/modules/tcl</p>
<td><p><a name="124051">
</a>Directory for private Tcl script library for this server. Tcl scripts in this private library will override identically-named Tcl scripts in the shared Tcl library.</p>
</Table></p>
<a name="10185">
</a><h4>ns/server/server-name/modules</h4>
<p><a name="14189">
</a>This section lists the AOLserver modules that are to be loaded into a server. There should be one of these sections for each server listed in the ns/servers section.</p>
<p><a name="20797">
</a>The name of the module can be any name you choose, but it must then be referenced as the module name in the appropriate ns/server/<i>server-name</i>/module/<i>module-name</i> section. For example, if you set <code>mylog</code> to <code>nslog.so</code>, you must configure the module in a section called ns/server/<i>server-name</i>/module/mylog instead of ns/server/<i>server-name</i>/module/nslog.</p>
<p><a name="21460">
</a>The file specified as the usual value for each parameter exists in the <code>bin</code> directory under the AOLserver home directory by default. If it resides somewhere else, include an absolute path specification along with the file.<Table Border = "3">
<tr><th><p><a name="10217">
</a><b>Parameter</b></p>
<th><p><a name="10219">
</a><b>Usual Value</b></p>
<th><p><a name="10221">
</a><b>Description</b></p>
<tr><td><p><a name="121011">
</a>nscgi</p>
<td><p><a name="121013">
</a>nscgi.so</p>
<td><p><a name="121015">
</a>If present, enables CGI support for this server. Configure CGI in the ns/server/<i>server-name</i>/module/nscgi section.</p>
<tr><td><p><a name="122463">
</a>nscp</p>
<td><p><a name="122465">
</a>nscp.so</p>
<td><p><a name="122467">
</a>If present, enables the control port administration interface for the server.</p>
<tr><td><p><a name="57012">
</a>nslog</p>
<td><p><a name="57014">
</a>nslog.so</p>
<td><p><a name="57017">
</a>If present, enables an access log for this server.Configure the access log in the ns/server/<i>server-name</i>/module/nslog section.</p>
<tr><td><p><a name="11405">
</a>nsperm</p>
<td><p><a name="11407">
</a>nsperm.so</p>
<td><p><a name="11409">
</a>If present, enables access control capabilities for this server. Configure these capabilities in the ns/server/<i>server-name</i>/module/nsperm section.</p>
<tr><td><p><a name="11399">
</a>nssock</p>
<td><p><a name="11401">
</a>nssock.so</p>
<td><p><a name="11403">
</a>If present, allows TCP/IP sockets connection for this server.Configure the sockets connection in the ns/server/<i>server-name</i>/module/nssock section.</p>
<tr><td><p><a name="126030">
</a>nsvhr</p>
<td><p><a name="126032">
</a>nsvhr.so</p>
<td><p><a name="126034">
</a>If present, enables virtual host redirection, which allows you to proxy requests to different servers.</p>
</Table></p>
<a name="120876">
</a><h4>ns/server/server-name/module/nscgi</h4>
<p><a name="120877">
</a>This section configures CGI for a server. There should be one of these sections for each server that includes the nscgi module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="120880">
</a><b>Parameter</b></p>
<th><p><a name="120882">
</a><b>Default Value</b></p>
<th><p><a name="120884">
</a><b>Description</b></p>
<tr><td><p><a name="121947">
</a>BufferSize</p>
<td><p><a name="121949">
</a>8192</p>
<td><p><a name="121956">
</a>The number of bytes to buffer before sending them out to the browser.</p>
<tr><td><p><a name="121983">
</a>Debug</p>
<td><p><a name="121985">
</a>off</p>
<td><p><a name="121987">
</a>Boolean value. If set to On, extra debugging is enabled.</p>
<tr><td><p><a name="120887">
</a>Environment</p>
<td><p><a name="120889">
</a></p>
<td><p><a name="120891">
</a>Specifies a section in the configuration file to be used as the default environment for CGI scripts run on this server. For example, if you set Environment to CGIenv, you must include a ns/environment/CGIenv section in the configuration file containing environment variable definitions. The environment variables will be in addition to the standard CGI variables.</p>
<tr><td><p><a name="120893">
</a>GetHostByAddr</p>
<td><p><a name="120896">
</a>off</p>
<td><p><a name="120898">
</a>Boolean value. If set to Off (the default), REMOTE_HOST will be the same as REMOTE_ADDR, thereby improving performance by eliminating reverse lookup requests. If set to On, a reverse lookup request is used to supply the REMOTE_HOST value.</p>
<tr><td><p><a name="120901">
</a>Interps</p>
<td><p><a name="120903">
</a></p>
<td><p><a name="120905">
</a>Specifies a section in the configuration file to define mappings between extensions of CGI script files and programs. For example, if you set Interp to CGIinterps, you must include a ns/interps/CGIinterps section in the configuration file containing appropriate mappings. See below for a description of the format of an Interps section.</p>
<tr><td><p><a name="121972">
</a>Limit</p>
<td><p><a name="121974">
</a>0 (unlimited)</p>
<td><p><a name="121976">
</a>Maximum number of concurrent CGI processes.</p>
<tr><td><p><a name="120909">
</a>Map</p>
<td><p><a name="120911">
</a></p>
<td><p><a name="120913">
</a>Method, URL, and directory where CGI programs reside. A trailing slash on the URL is not allowed. The directory must be an absolute pathname. A trailing slash on the directory is optional. If the directory is missing, the pages directory is assumed. Examples:</p>
<p><a name="120914">
</a>Map "GET /cgi /usr/local/cgi"</p>
<p><a name="120915">
</a>Map "POST /*.cgi"</p>
<p><a name="120916">
</a>You may have more than one Map entry. Typically, there are at least Map entries for the GET and POST methods.</p>
<tr><td><p><a name="122066">
</a>MaxOutput</p>
<td><p><a name="122068">
</a>10240</p>
<td><p><a name="122070">
</a>Maximum number of bytes of output the CGI program can send.</p>
<tr><td><p><a name="122101">
</a>SystemEnvironment</p>
<td><p><a name="122103">
</a>off</p>
<td><p><a name="122105">
</a>Boolean value. If set to on, sets the ??? environment variable.</p>
</Table></p>
<p><a name="122583">
</a></p>
<a name="122605">
</a><h4>ns/server/server-name/module/nscp</h4>
<p><a name="122606">
</a>This section configures the control port, through which you can administer the server. There should be one of these sections for each server that includes the nscp module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="122609">
</a><b>Parameter</b></p>
<th><p><a name="122611">
</a><b>Default Value</b></p>
<th><p><a name="122613">
</a><b>Description</b></p>
<tr><td><p><a name="136893">
</a>Address</p>
<td><p><a name="136895">
</a>"127.0.0.1"</p>
<td><p><a name="136897">
</a>The address to bind to.</p>
<tr><td><p><a name="122615">
</a>Binary</p>
<td><p><a name="122617">
</a>"bin/nscp"</p>
<td><p><a name="122619">
</a>The path for the control port executable.</p>
<tr><td><p><a name="156710">
</a>InitCmds</p>
<td><p><a name="156712">
</a></p>
<td><p><a name="156714">
</a>Commands to be executed by the control port when it starts. For example, to automatically view the log when you log into the control port, set this parameter as follows:</p>
<pre> <a name="156718"></a>ns_param initcmds "tail -f
log/server.log&"
</pre><p>
<tr><td><p><a name="122621">
</a>Port</p>
<td><p><a name="122623">
</a>9999</p>
<td><p><a name="122625">
</a>The port to listen on. To access the administration interface, telnet to the specified Port at the specified Address. For example: <code>telnet localhost 9999</code></p>
<tr><td><p><a name="156613">
</a>Reconnection</p>
<td><p><a name="156615">
</a>Off</p>
<td><p><a name="156617">
</a>Boolean value. If set to On, telnet connections to the control port will not be disconnected when AOLserver exits for any reason, such as when an ns_shutdown command is issued. Instead, the control port will issue the following message if AOLserver exits:</p>
<pre> <a name="156634"></a>AOLserver has terminated. The control
port will automatically reconnect
to it when the nsd process
is restarted. You may type ^C to
close this control port connection.
</pre><p><p><a name="156665">
</a>When AOLserver is restarted in another window, this message is displayed:</p>
<pre> <a name="156673"></a>Reconnected successfully
<a name="156674"></a>Welcome to the AOLserver control
port!
<a name="156675"></a>247 commands
<a name="156676"></a>server1>
</pre><p><p><a name="156677">
</a>When this parameter is set to On, it is also possible to restart AOLserver from the control port by issuing a command such as:</p>
<pre> <a name="156694"></a>server1> <b>!bin/nsd -kt nsd.tcl
</b></pre><p><p><a name="156695">
</a><b>Warning!</b> Setting this parameter to On is a potential security hole. Use this parameter only on development systems and not on production systems. To ensure security, make sure the /servers/server1/module/nscp directory has permissions 700 and is owned by the same user that AOLserver runs as.</p>
</Table></p>
<p><a name="122632">
</a></p>
<a name="122701">
</a><h4>ns/server/server-name/module/nscp/users</h4>
<p><a name="122702">
</a>This section the users allowed to access the control port for the server. There should be one of these sections for each server that includes the nscp module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="122705">
</a><b>Parameter</b></p>
<th><p><a name="122707">
</a><b>Default Value</b></p>
<th><p><a name="122709">
</a><b>Description</b></p>
<tr><td><p><a name="156394">
</a>Permuser</p>
<td><p><a name="156396">
</a></p>
<td><p><a name="156398">
</a>The username and inputrc file for the user allowed to set permissions using the control port. The format is:</p>
<p><a name="156399">
</a>"name:inputrc-file"</p>
<p><a name="156400">
</a>The password will be taken from the nsperm module.</p>
<tr><td><p><a name="122711">
</a>User</p>
<td><p><a name="122713">
</a></p>
<td><p><a name="155967">
</a>The username, password and inputrc file for the user allowed to access the control port for this server. The format is: </p>
<p><a name="155968">
</a>"name:encrypted-password:inputrc-file"</p>
<p><a name="155969">
</a>For example:</p>
<p><a name="155970">
</a>"nsadmin:cU00q44rXCZew:modules/nscp/tcsh.inputrc"</p>
<p><a name="155971">
</a>This allows the nsadmin user to login with the given encrypted password, and the specified inputrc will be used.</p>
<p><a name="156366">
</a>For information on the inputrc format, read the documentation for GNU Readline 4.0. If nscp is built without the GNU Readline library (the default configuration), only the following functions are allowed in the inputrc file:</p>
echo
<a name="156367">
</a>newline
<a name="156368">
</a>backward-delete-char
<a name="156369">
</a>beginning-of-line
<a name="156370">
</a>end-of-line
<a name="156371">
</a>forward-char
<a name="156372">
</a>backward-char
<a name="156373">
</a>up-history
<a name="156379">
</a>down-history
<a name="156380">
</a>complete-word
<a name="156381">
</a>delete-char
<a name="156382">
</a>kill-line
<a name="156383">
</a>yank
<a name="156384">
</a>clear-screen
<a name="156385">
</a>transpose-chars
<a name="156386">
</a>kill-whole-line
<a name="156387">
</a>set-mark
<a name="156388">
</a>kill-region
<a name="156478">
</a>copy-region-as-kill
<a name="156479">
</a>exchange-point-and-mark
<a name="156480">
</a>backward-word
<a name="156481">
</a>forward-word
<a name="156482">
</a>delete-word
<a name="156483">
</a>history-search-backward
<a name="156484">
</a>history-search-forward
<a name="156485">
</a>exit-if-empty
<a name="156486">
</a>
</Table></p>
<a name="74437">
</a><h4>ns/server/server-name/module/nslog</h4>
<p><a name="60002">
</a>This section configures the nslog module for a server. There should be one of these sections for each server that includes an nslog module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="60005">
</a><b>Parameter</b></p>
<th><p><a name="60007">
</a><b>Default Value</b></p>
<th><p><a name="60009">
</a><b>Description</b></p>
<tr><td><p><a name="60019">
</a>File</p>
<td><p><a name="60021">
</a>access.log</p>
<td><p><a name="79201">
</a>The name of the file where the access log is to be stored. If no directory is specified, the file will be created in the /servers/<i>server-name</i>/modules/nslog directory. If you specify only an absolute or relative directory and no filename, the file access.log will be created in that directory.</p>
<p><a name="65935">
</a>Accesses are logged in CERN Common Logfile Format.</p>
<tr><td><p><a name="147316">
</a>FormattedTime</p>
<td><p><a name="147318">
</a>On</p>
<td><p><a name="147325">
</a>Boolean value. If set to On, nslog will use the common log format for the timestamp. When Off, the time will be logged as seconds since Jan 1 1970. That will provide a small speedup in heavily accessed sites because of locking that occurs in performing timzeone conversions.</p>
<tr><td><p><a name="65961">
</a>LogCombined</p>
<td><p><a name="65963">
</a>off</p>
<td><p><a name="65965">
</a>Boolean value. If set to on, logs will be generated in the NCSA combined log format. The NCSA combined log format will include the referring URL and the user agent (so you can turn off LogRefer and LogUserAgent), and it will not surround them with double quotes.</p>
<tr><td><p><a name="60040">
</a>MaxBackup</p>
<td><p><a name="60042">
</a>5</p>
<td><p><a name="65999">
</a>The maximum number of access logs that will be saved. This amount includes the current access log. For example, a value of 5 means the current access log plus 4 backup logs.</p>
<tr><td><p><a name="66112">
</a>RollHour</p>
<td><p><a name="66114">
</a>0 (midnight)</p>
<td><p><a name="66116">
</a>The hour at which the access log will be rolled on the day or days specified by the RollDay parameter. The hour must be specifed as an integer from 0 to 23 representing the hour in military time.</p>
<tr><td><p><a name="79261">
</a>RollLog</p>
<td><p><a name="79263">
</a>on</p>
<td><p><a name="79265">
</a>Boolean value. If set to On, the access log is rolled according to the settings for the RollDay and RollHour parameters. If set to Off, log entries will be written to the same access log indefinitely. However, the access log can still be rolled on SIGHUP if the RollOnSignal parameter is set to On (the default).</p>
<tr><td><p><a name="66121">
</a>RollOnSignal</p>
<td><p><a name="66123">
</a>on</p>
<td><p><a name="72094">
</a>Boolean value. The default, "on", specifies that the access log will be rolled when a SIGHUP signal is sent to the process id of the running server. The process id can be found in the file specified by the PidFile parameter.</p>
<p><a name="72063">
</a>If set to "off", the access log will not be rolled when a signal is sent.</p>
</Table></p>
<a name="8758">
</a><h4>ns/server/server-name/module/nsperm</h4>
<p><a name="14248">
</a>This section configures the nsperm module for a server. There should be one of these sections for each server that includes an nsperm module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="10260">
</a><b>Parameter</b></p>
<th><p><a name="10262">
</a><b>Default Value</b></p>
<th><p><a name="10264">
</a><b>Description</b></p>
<tr><td><p><a name="125748">
</a>SkipLocks</p>
<td><p><a name="125750">
</a>on</p>
<td><p><a name="125824">
</a>Boolean value. If set to on, permissions lookups will be faster, but no permissions settings may be added while the server is running.</p>
</Table></p>
<a name="85895">
</a><h4>ns/server/server-name/module/nssock</h4>
<p><a name="25488">
</a>This section configures the nssock module for a server. Each server must have an nssock module loaded. There should be one of these sections for each server that includes an nssock module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="25491">
</a><b>Parameter</b></p>
<th><p><a name="25493">
</a><b>Default Value</b></p>
<th><p><a name="25495">
</a><b>Description</b></p>
<tr><td><p><a name="56729">
</a>Address</p>
<td><p><a name="56731">
</a></p>
<td><p><a name="56733">
</a>IP Address or hostname where this server listens for requests. If this parameter is not set, AOLserver will listen on all interfaces. This means that if one server does not set an address, no other server may use the same Port.</p>
<tr><td><p><a name="125843">
</a>Hostname</p>
<td><p><a name="125848">
</a>AOLserver queries the DNS (Domain Name Service) for the host name.</p>
<td><p><a name="125850">
</a>Host name used in response to clients. This may be an alias for your site, such as www.avalon.com. Make sure the IP address of the Hostname you set is valid or users will be unable to process redirects from your site.</p>
<tr><td><p><a name="125904">
</a>Location</p>
<td><p><a name="125906">
</a></p>
<td><p><a name="125908">
</a>The URL that redirects come back to. This parameter is useful when the server machine is part of a group of machines responding to requests through a DNS rotor. By default, the server will use http://hostname as the location.</p>
<tr><td><p><a name="125921">
</a>Port</p>
<td><p><a name="125923">
</a>80</p>
<td><p><a name="125925">
</a>Port number where this server listens for requests. If two servers use the same port, they must use different Addresses.</p>
</Table></p>
<p><a name="126047">
</a></p>
<a name="126389">
</a><h4>ns/server/server-name/module/nsvhr</h4>
<p><a name="126390">
</a>This section configures the nsvhr module for a server. There should be one of these sections for each server that includes an nsvhr module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="126394">
</a><b>Parameter</b></p>
<th><p><a name="126396">
</a><b>Default Value</b></p>
<th><p><a name="126398">
</a><b>Description</b></p>
<tr><td><p><a name="126401">
</a>BusyURL</p>
<td><p><a name="126403">
</a></p>
<td><p><a name="126405">
</a>An URL to redirect to if a proxy attempt times out.</p>
<tr><td><p><a name="126990">
</a>ErrorURL</p>
<td><p><a name="126992">
</a></p>
<td><p><a name="127135">
</a>An URL to redirect to when an unknown host is requested or the host could not be reached.</p>
<tr><td><p><a name="126984">
</a>Method</p>
<td><p><a name="126986">
</a></p>
<td><p><a name="127151">
</a>A method to proxy. Can be GET, POST, or HEAD. This parameter may be specified multiple times.</p>
<tr><td><p><a name="126978">
</a>Timeout</p>
<td><p><a name="126980">
</a>30</p>
<td><p><a name="126982">
</a>The number of seconds to wait for a back-end host while proxying.</p>
</Table></p>
<p><a name="126726">
</a></p>
<a name="126815">
</a><h4>ns/server/server-name/module/nsvhr/maps</h4>
<p><a name="126816">
</a>This section configures the nsvhr module for a server. There should be one of these sections for each server that includes an nsvhr module <i>if</i> you want to change any of the default settings for the parameters.<Table Border = "3">
<tr><th><p><a name="126819">
</a><b>Parameter</b></p>
<th><p><a name="126821">
</a><b>Default Value</b></p>
<th><p><a name="126823">
</a><b>Description</b></p>
<tr><td><p><a name="126825">
</a>hostname</p>
<td><p><a name="126827">
</a>url</p>
<td><p><a name="126829">
</a>If a request comes in with Host: <i>hostname</i>, the request will be proxied to the specified <i>url</i>. For example:</p>
<p><a name="126830">
</a>phony.hosting.com=http://127.0.0.0:2000/</p>
<p><a name="156779">
</a>phony2.hosting.com=unix://phony2</p>
<p><a name="156780">
</a>The phony2 domain is a UNIX domain socket file name defined in the ns/server/servername/module/nsunix section. The syntax for the UNIX domain socket file name follows the URL syntax of a host name. The unix:// prefix is required before the socket file name.</p>
</Table></p>
<p><a name="126295">
</a></p>
<a name="156749">
</a><h4>ns/server/server-name/module/nsunix</h4>
<p><a name="156750">
</a>This section configures the nsunix module for a server. This section is needed if you want the nsvhr module to proxy over a UNIX domain socket instead of a TCP socket. Initially, this driver accepts a connection on a Unix domain socket and receives a message sent by nsvhr.so. The message contains the passed file descriptor of the connection socket and the initial data from that connection socket. The rest of the data is read from the passed file descriptor after the initial data has been consumed from the message. These are the required parameters:.<Table Border = "3">
<tr><th><p><a name="156753">
</a><b>Parameter</b></p>
<th><p><a name="156755">
</a><b>Default Value</b></p>
<th><p><a name="156757">
</a><b>Description</b></p>
<tr><td><p><a name="156864">
</a>Hostname</p>
<td><p><a name="156866">
</a></p>
<td><p><a name="156868">
</a>Host name used in response to clients. This may be an alias for your site, such as www.avalon.com. Make sure the IP address of the Hostname you set is valid or users will be unable to process redirects from your site.</p>
<tr><td><p><a name="156870">
</a>Port</p>
<td><p><a name="156872">
</a></p>
<td><p><a name="156988">
</a>Port number where this server listens for requests.</p>
<tr><td><p><a name="156759">
</a>SocketFile</p>
<td><p><a name="156761">
</a></p>
<td><p><a name="156764">
</a>The file name for the UNIX domain socket. It follows the same syntax of a host name named by the Hostname parameter. No slashes (/) are permitted in the file name, but the dot (.), dash (-), and underscore (_) characters are permitted. The socket file is created in the modules/nsunix/ directory. For example:</p>
<p><a name="156982">
</a>ns_param SocketFile "server2.nsunix"</p>
</Table></p>
<p><a name="157032">
</a>There is a comprehensive sample nsd.tcl file in the nsvhr/ directory that shows how to configure the nsvhr module to proxy to a nsunix module of a different server. The two servers are started with these commands:</p>
<pre> <a name="157036"></a>bin/nsd -s server1 -f -t nsd.tcl
<a name="157037"></a>bin/nsd -s server2 -f -t nsd.tcl
</pre><p><p><a name="157030">
</a></p>
<a name="7935">
</a><h4>Database Drivers and Pools</h4>
<a name="12449">
</a><h4>ns/db/drivers</h4>
<p><a name="18939">
</a>This section lists the available database drivers to be used with the database pools. The name of the driver can be any name you choose, but it must then be referenced as the driver name in the appropriate ns/db/driver/<i>driver-name</i> section. Note that the <code>driver</code> parameter in the ns/db/pool/<i>pool-name</i> section must also reference the driver name to associate a database driver with a particular database pool.</p>
<p><a name="26772">
</a>The file specified as the usual value for each parameter exists in the bin directory under the AOLserver home directory by default. If it resides somewhere else, include an absolute path specification along with the file.<Table Border = "3">
<tr><th><p><a name="12438">
</a><b>Parameter</b></p>
<th><p><a name="12440">
</a><b>Usual Value</b></p>
<th><p><a name="12442">
</a><b>Description</b></p>
<tr><td><p><a name="94229">
</a>postgres</p>
<td><p><a name="94231">
</a>nspostgres.so</p>
<td><p><a name="94233">
</a>If present, enables the Postgres database driver. No configuration is necessary for the Postgres driver.</p>
<tr><td><p><a name="81442">
</a>solid</p>
<td><p><a name="81444">
</a>nssolid.so</p>
<td><p><a name="81446">
</a>If present, enables the SOLID database driver. No configuration is necessary for the SOLID driver.</p>
<tr><td><p><a name="66637">
</a>ext<i>name</i></p>
<td><p><a name="66639">
</a>nsext.so</p>
<td><p><a name="66642">
</a>The external database driver name. There can be multiple (uniquely-named) instances of this parameter, one for each proxy daemon interface. By convention, the external driver names are prepended with "ext". For example: extIll or extSyb.</p>
</Table></p>
<a name="66659">
</a><h4>ns/db/driver/extname</h4>
<p><a name="66976">
</a>This section configures an external database driver. There should be one of these sections in your configuration file if an external driver is listed in the ns/db/drivers section<i> and </i>you want to change any of the default settings for the parameters<Table Border = "3">
<tr><th><p><a name="66662">
</a><b>Parameter</b></p>
<th><p><a name="66664">
</a><b>Usual Value</b></p>
<th><p><a name="66666">
</a><b>Description</b></p>
<tr><td><p><a name="66669">
</a>LocalDaemon</p>
<td><p><a name="66672">
</a><b>Sybase:</b> nssybpd</p>
<td><p><a name="66674">
</a>The local database proxy daemon. </p>
<p><a name="66675">
</a>Use this parameter only for local database proxy daemons.</p>
<tr><td><p><a name="92742">
</a>MaxElement-Size</p>
<td><p><a name="92744">
</a>32K</p>
<td><p><a name="92746">
</a>An integer value specifying the maximum element size for an external database driver.</p>
<tr><td><p><a name="66678">
</a>RemoteHost</p>
<td><p><a name="66680">
</a></p>
<td><p><a name="66682">
</a>A remote host name. Use this parameter only for remote database proxy daemons.</p>
<tr><td><p><a name="66685">
</a>RemotePort</p>
<td><p><a name="66687">
</a></p>
<td><p><a name="66689">
</a>A remote port number. Use this parameter only for remote database proxy daemons.</p>
<tr><td><p><a name="66692">
</a>Param</p>
<td><p><a name="66694">
</a>/usr/local/miadmin/MiParams</p>
<td><p><a name="66696">
</a>For Sybase, the value of the SYBASE environment variable.</p>
<tr><td><p><a name="88685">
</a>TrimData</p>
<td><p><a name="88687">
</a>off</p>
<td><p><a name="88696">
</a>Boolean value. For Sybase. If set to On, the external driver will trim from the right the data returned by the Sybase server. This parameter is useful when, for example, you don't want all the empty whitespace from a 32-character char or when "empty" varchars are returning a non-empty 2-byte value.</p>
<p><a name="88717">
</a>Note that this will probably corrupt image types that are holding binary data in a BLOB (the "text" type in Sybase), so it is recommended that you leave this parameter Off if you're working with BLOBs.</p>
</Table></p>
<a name="26401">
</a><h4>ns/db/pools</h4>
<p><a name="26423">
</a>This section lists (and names) each of the available database pools for AOLserver.<Table Border = "3">
<tr><th><p><a name="26407">
</a><b>Parameter</b></p>
<th><p><a name="26409">
</a><b>Default Value</b></p>
<th><p><a name="26411">
</a><b>Description</b></p>
<tr><td><p><a name="26414">
</a><i>pool-name</i></p>
<td><p><a name="26416">
</a><i>pool description</i></p>
<td><p><a name="26418">
</a>The name (user-defined) of a database pool, which is actually a collection of connections accessible to AOLserver to the associated database. The database connection itself is configured in the ns/db/pool/<i>pool-name</i> section.</p>
<p><a name="26422">
</a>The <i>pool description</i> can be any user-specified comments about the pool.</p>
</Table></p>
<a name="26424">
</a><h4>ns/db/pool/pool-name</h4>
<p><a name="26425">
</a>This section configures a database pool. There should be one of these sections for each database pool listed in the ns/db/pools section.<Table Border = "3">
<tr><th><p><a name="26428">
</a><b>Parameter</b></p>
<th><p><a name="26430">
</a><b>Default Value</b></p>
<th><p><a name="26432">
</a><b>Description</b></p>
<tr><td><p><a name="56265">
</a>Connections</p>
<td><p><a name="56267">
</a>2</p>
<td><p><a name="56269">
</a>The maximum number of connections that can be established at any one time. The server automatically makes connections as needed up to this maximum number. If additional connections are requested during processing, the requests must wait. </p>
<p><a name="56270">
</a>Note: Some databases do not handle multiple connections very well. In this case, you should set Connections to 1 (one).</p>
<tr><td><p><a name="56207">
</a>Datasource</p>
<td><p><a name="88667">
</a>Postgres: host:port:database</p>
<p><a name="88670">
</a>Solid: TCP/IP hostname port</p>
<td><p><a name="56212">
</a>The location and name of the database, according to the specifications of the database being used. </p>
<tr><td><p><a name="26435">
</a>Driver</p>
<td><p><a name="26437">
</a></p>
<td><p><a name="26439">
</a>Value can be any driver named in the ns/db/drivers section: postgres (for Postgres), solid (for SOLID), or an external database driver.</p>
<tr><td><p><a name="121358">
</a>LogSQLErrors</p>
<td><p><a name="121360">
</a>off</p>
<td><p><a name="121362">
</a>Boolean value. If set to On, SQL errors are written to the server log along with the offending SQL statement(s). If set to Off and Verbose is also Off, SQL errors are not written to the server log. </p>
<tr><td><p><a name="121365">
</a>MaxIdle</p>
<td><p><a name="121367">
</a>600</p>
<td><p><a name="121369">
</a>The maximum length of time in seconds that a database connection within this pool can remain open and idle.</p>
<p><a name="121370">
</a>The default setting causes connections that are idle for 10 minutes to be closed. Note that MaxIdle will not have an effect if it is equal to MaxOpen.</p>
<p><a name="121371">
</a>Setting MaxIdle to 0 makes it impossible for database handles to become stale, unless the MaxOpen time expires.</p>
<tr><td><p><a name="121374">
</a>MaxOpen</p>
<td><p><a name="121376">
</a>3600</p>
<td><p><a name="121378">
</a>The maximum length of time in seconds that a database connection within this pool can remain open. It is recommended that MaxOpen be a multiple of MaxIdle; otherwise, MaxOpen may be off by as much as (MaxOpen mod MaxIdle).</p>
<p><a name="121379">
</a>The default setting causes all connections to be closed after one hour, regardless of activity level. Database pool connections will then be opened again as needed up to the value of the Connections parameter.</p>
<p><a name="121380">
</a>Setting MaxOpen to 0 makes it impossible for database handles to become stale when they are not idle.</p>
<tr><td><p><a name="121383">
</a>Password</p>
<td><p><a name="121385">
</a></p>
<td><p><a name="121388">
</a>Password to log into the database.</p>
<tr><td><p><a name="56393">
</a>User</p>
<td><p><a name="56395">
</a></p>
<td><p><a name="56399">
</a>Username to log into the database.</p>
<tr><td><p><a name="26472">
</a>Verbose</p>
<td><p><a name="26474">
</a>off</p>
<td><p><a name="91145">
</a>Boolean value. If set to On, all SQL statements executed against this pool are written to the server log. Errors, connects, and disconnects are also logged. If set to Off, SQL statements are not written to the server log. </p>
<p><a name="91147">
</a>At no point is the same SQL statement written to the log twice, even if Verbose is On, LogSQLErrors is On, and the statement causes an error. </p>
<p><a name="91141">
</a><b>Note:</b> Setting Verbose may result in a large amount of output in the server log file. </p>
</Table></p>
<a name="52783">
</a><h4>CGI Interpreters and Environment</h4>
<a name="68166">
</a><h4>ns/interps/interps-name</h4>
<p><a name="52849">
</a>This section allows you to configure an interps section that can be used by CGI modules loaded into any of the servers..<Table Border = "3">
<tr><th><p><a name="52815">
</a><b>Parameter</b></p>
<th><p><a name="52817">
</a><b>Default Value</b></p>
<th><p><a name="52819">
</a><b>Description</b></p>
<tr><td><p><a name="52822">
</a><i>file-extension</i></p>
<td><p><a name="52825">
</a><i>program(environment)</i></p>
<td><p><a name="52827">
</a>A CGI interpreter definition used by a CGI module. The environment is optional and specifies a section of environment variables to set in addition to the CGI variables before executing the interpreter program. For example:</p>
<pre> <a name="53044"></a>.pl "c:\perl\bin\perl.exe"
<a name="55552"></a>.sh "c:\mks\mksnt\sh.exe(MKSenv"
</pre><p><p><a name="53045">
</a>In this case, Perl will be invoked to interpret CGI scripts which end in .pl; the variables in the ns/environment/mksenv section will be set before the MKS Bourne shell is invoked to interpret CGI scripts which end in .sh.</p>
<p><a name="55575">
</a>To enable this section to be used by a specific CGI module, use the Interps parameter of the CGI module.</p>
</Table></p>
<a name="52785">
</a><h4>ns/environment/environment-name</h4>
<p><a name="52925">
</a>This section allows you to configure an environment section that can be used by CGI modules loaded into any of the servers..<Table Border = "3">
<tr><th><p><a name="52891">
</a><b>Parameter</b></p>
<th><p><a name="52893">
</a><b>Default Value</b></p>
<th><p><a name="52895">
</a><b>Description</b></p>
<tr><td><p><a name="52898">
</a><i>variable</i></p>
<td><p><a name="52901">
</a><i>definition</i></p>
<td><p><a name="52903">
</a>An environment variable definition used by a CGI module. To enable this section to be used by a specific CGI module, use the Environment parameter of the CGI module or add the optional environment name in the definition of a CGI interpreter.</p>
</Table></p>
<a name="71365">
</a><h4>SGI IRIX Sproc-Based Threads</h4>
<a name="71366">
</a><h4>ns/threads</h4>
<p><a name="71367">
</a>This section allows you to configure sproc-based threads available on IRIX 5.3 or 6.2 (not the pthreads-based approach available on IRIX 6.2). </p>
<p><a name="71368">
</a>Note that these parameters are provided for advanced IRIX users who need to fine-tune their system..<Table Border = "3">
<tr><th><p><a name="71371">
</a><b>Parameter</b></p>
<th><p><a name="71373">
</a><b>Default Value</b></p>
<th><p><a name="71375">
</a><b>Description</b></p>
<tr><td><p><a name="125648">
</a>InitSize</p>
<td><p><a name="125650">
</a>262144</p>
<td><p><a name="125652">
</a>The SGI arena size in bytes (minimum is 32768).</p>
<tr><td><p><a name="125655">
</a>InitUsers</p>
<td><p><a name="125657">
</a>100</p>
<td><p><a name="125659">
</a>Maximum number of users for the SGI arena (miminum is 10; maximum is 1500).</p>
<tr><td><p><a name="125685">
</a>MaxTLS</p>
<td><p><a name="125687">
</a>200</p>
<td><p><a name="125689">
</a>Maximum number of thread-local storage variables.</p>
<tr><td><p><a name="125679">
</a>PoolTrace</p>
<td><p><a name="125681">
</a></p>
<td><p><a name="125683">
</a>File specification where debugging output of memory pools should be written.</p>
<tr><td><p><a name="125673">
</a>StackSize</p>
<td><p><a name="125675">
</a>65536</p>
<td><p><a name="125716">
</a>Starting stack size for each thread. This value overrides the StackSize parameter in the ns/parameters section.</p>
</Table></p>
<TABLE BORDER="2" CELLPADDING="1" width="100%">
<TR><TD COLSPAN=3><P ALIGN=Center>
<IMG SRC="bluebult.gif">
<A HREF="#topofpage">
<FONT SIZE=-1>Top of Page</FONT></A>
<IMG SRC="bluebult.gif">
</TD></TR>
<TR><TD COLSPAN=3><P ALIGN=Center>
<A href="con-ch2.htm">
<IMG BORDER="0" src=navbprev.gif alt="[ Previous ]"></A>
<A href=toc.htm>
<IMG BORDER="0" src=navbhome.gif alt="[ Contents ]"></A>
<A href=master.htm>
<IMG BORDER="0" src=navbhelp.gif alt="[ Index ]"></A>
<A href="con-ch4.htm">
<IMG BORDER="0" src=navbnext.gif alt="[ Next ]"></A>
<BR align=center>
<FONT size=-1>Copyright © 1998-99 America Online,
Inc.</FONT>
</TD></TR></TABLE></BODY></HTML>
|