home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / sambar / _setup.1 / config.stm < prev    next >
Text File  |  2001-04-29  |  25KB  |  608 lines

  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
  4. <META HTTP-EQUIV="Expires" CONTENT="-1">
  5. <TITLE>Server Configuration</TITLE>
  6. </HEAD>
  7. <BODY bgcolor=#ffffff>
  8. <SCRIPT language="JavaScript">
  9. <!--
  10. function Form_Validator(theForm)
  11. {
  12.     if (theForm.port.value == "")
  13.     {
  14.         alert("Please enter a value for the \"Server Port\" field.");
  15.         theForm.port.focus();
  16.         return (false);
  17.     }
  18.  
  19.     if (theForm.maxconns.value == "")
  20.     {
  21.         alert("Please enter a value for the \"Maximum Connections\" field.");
  22.         theForm.maxconns.focus();
  23.         return (false);
  24.     }
  25.  
  26.     if (theForm.nettimeout.value == "")
  27.     {
  28.         alert("Please enter a value for the \"Network Read Timeout\" field.");
  29.         theForm.nettimeout.focus();
  30.         return (false);
  31.     }
  32.  
  33.     if (theForm.watcherto.value == "")
  34.     {
  35.         alert("Please enter a value for the \"Watcher Timeout\" field.");
  36.         theForm.maxconns.focus();
  37.         return (false);
  38.     }
  39.  
  40.     if (theForm.homepage.value == "")
  41.     {
  42.         alert("Please enter a value for the \"Home Page\" field.");
  43.         theForm.homepage.focus();
  44.         return (false);
  45.     }
  46. }
  47. //-->
  48. </SCRIPT>
  49.  
  50. <A HREF="/sysadmin/index.stm" TARGET=_top>
  51. <IMG border=0 ALIGN=left SRC="/sysimage/system/console.gif"></A>
  52. <CENTER><FONT SIZE=6>Server Configuration</FONT>
  53. <BR>
  54. <I>Changes don't take effect until system restart.  You must restart the 
  55. server before making any other configuration changes or the changes you
  56. make below will be overwritten.</I>
  57. <HR>
  58. </CENTER>
  59. <FORM METHOD=POST ACTION="/session/sysconfig" TARGET=_top onsubmit="return Form_Validator(this)">
  60. <INPUT TYPE=hidden NAME="RCpage" VALUE="/sysadmin/index.stm">
  61.  
  62. <TABLE border=0 cellspacing=20>
  63.  
  64. <TR valign=top><TD width=20%><FONT SIZE=+1>System Administrator</FONT>
  65. <P>
  66. <SELECT NAME=sysadmin>
  67. <RCXselectuser username=RCEsysadmin>
  68. </SELECT>
  69. </TD>
  70. <TD>The System Administrator username is used to access these sysadmin folder
  71. and administrator methods.  By default, the administrator username is 'admin'.
  72. </TD></TR>
  73.  
  74. <TR valign=top><TD width=20%><FONT SIZE=+1>System Administrator IP</FONT>
  75. <P>
  76. <INPUT TYPE=text NAME="sysadminip" VALUE="<RCEsysadminip>" SIZE=30 MAXSIZE=40>
  77. </TD>
  78. <TD>If left blank, the Sambar Server System Administrator may login from
  79. any host.  A space-separated list of IP addresses may be provided
  80. (the wild-card character '*' may be used, i.e. 140.172.165.* ) to ensure 
  81. that only hosts which you plan to use for administration have access to 
  82. your System Administration tools.  For maximum security, only allow access
  83. to the "localhost" account (127.0.0.1).
  84. </TD></TR>
  85.  
  86. <TR valign=top><TD width=20%><FONT SIZE=+1>User IP</FONT>
  87. <P>
  88. <INPUT TYPE=text NAME="userip" VALUE="<RCEuserip>" SIZE=30 MAXSIZE=40>
  89. </TD>
  90. <TD>If left blank, Sambar Server users may login from any host.  
  91. A space-separated list of IP addresses may be provided (the wild-card 
  92. character '*' may be used, i.e. 140.172.165.* ) to ensure 
  93. that only hosts which you plan to use for user logins have access to 
  94. your server.  
  95. </TD></TR>
  96.  
  97. <TR valign=top><TD width=20%><FONT SIZE=+1>Server Port</FONT>
  98. <P>
  99. <INPUT TYPE=text NAME="port" VALUE="<RCEport>" SIZE=12 MAXSIZE=12>
  100. </TD>
  101. <TD>The TCP/IP protocol has a number of ports which are used to differentiate
  102. requests to different processes. The standard HTTP port number is 80.  You can
  103. choose any port number from 1 to 65000, however, many port numbers on your
  104. system are reserved for other applications.  Should you choose any port other 
  105. than port 80, you will have to access you homepage with the port number 
  106. appended to the URL (i.e. http://www.sambar.com:1080/ ).
  107. </TD></TR>
  108.  
  109. <TR valign=top><TD width=20%><FONT SIZE=+1>Security Realm</FONT>
  110. <P>
  111. <INPUT TYPE=text NAME="realm" VALUE="<RCErealm>" SIZE=20 MAXSIZE=20>
  112. </TD>
  113. <TD>The security realm of the server.  This applies to all Basic
  114. security.
  115. </TD></TR>
  116.  
  117. <TR valign=top><TD width=20%><FONT SIZE=+1>NT Authentication</FONT>
  118. <P>
  119. <INPUT TYPE=radio NAME="ntauth" VALUE="true" <RCif RCEntauth = true> CHECKED<RCendif>>
  120. <B>Yes</B><BR>
  121. <INPUT TYPE=radio NAME="ntauth" VALUE="false" <RCif RCEntauth = false> CHECKED<RCendif>>
  122. <B>No</B><BR>
  123. </TD>
  124. <TD>Perform username/password authentication using NT Authentication/domain.
  125. By default, the Sambar Server <I>config/passwd</I> file is used.
  126. NT Authentication is not recommended for servers that will reside
  127. on the internet.<BR>
  128. <B><I>Domain</I></B> <INPUT TYPE=text NAME="ntdomain" VALUE="<RCEntdomain>">
  129. </TD></TR>
  130.  
  131. <TR valign=top><TD nowrap width=20%><FONT SIZE=+1>Radius Authentication</FONT>
  132. <P>
  133. <INPUT TYPE=radio NAME="radiusauth" VALUE="true" <RCif RCEradiusauth = true> CHECKED<RCendif>>
  134. <B>Yes</B><BR>
  135. <INPUT TYPE=radio NAME="radiusauth" VALUE="false" <RCif RCEradiusauth = false> CHECKED<RCendif>>
  136. <B>No</B><BR>
  137. </TD>
  138. <TD>Perform username/password authentication using a Radius server.
  139. <B>Important!</B> Radius authentication is still being debugged.
  140. To override the default radius port (1812), specify the radius host
  141. as <I>hostname</I>:<I>port</I>.  By default, the Sambar Server 
  142. <I>config/passwd</I> file is used.<BR>
  143. <B><I>Server</I></B> <INPUT TYPE=text NAME="radius" VALUE="<RCEradius>"><BR>
  144. <B><I>Secret</I></B> <INPUT TYPE=password NAME="radiussecret" VALUE="<RCEradiussecret>">
  145. </TD></TR>
  146.  
  147. <TR valign=top><TD width=20%><FONT SIZE=+1>Maximum Connections</FONT>
  148. <P>
  149. <INPUT TYPE=text NAME="maxconns" VALUE="<RCEmaxconns>" SIZE=12 MAXSIZE=12>
  150. </TD>
  151. <TD>Configure the maximum simultaneous connections supported by the system.
  152. Connections differ from users in that a connection is only maintained
  153. by the HTTP server for the duration of the transaction (HTTP request).
  154. Therefore, while you might wish to support 200 simultaneous users, the
  155. number of simultaneous connections needed to support that number of users 
  156. would likely be no more than 20.
  157. </TD></TR>
  158.  
  159. <TR valign=top><TD width=20%><FONT SIZE=+1>Network Read Timeout</FONT>
  160. <P>
  161. <INPUT TYPE=text NAME="nettimeout" VALUE="<RCEnettimeout>" SIZE=12 MAXSIZE=12>
  162. </TD>
  163. <TD>Configure the maximum time, in seconds, to wait for a client connection
  164. before terminating the connection.   This period must be at least as
  165. large as the Keep-Alive duration defined for the HTTP protocol.  This
  166. duration affects HTTP, proxy and FTP clients. 
  167. </TD></TR>
  168.  
  169. <TR valign=top><TD width=20%><FONT SIZE=+1>Memory Cache</FONT>
  170. <P>
  171. <INPUT TYPE=text NAME="cachesize" VALUE="<RCEcachesize>" SIZE=12 MAXSIZE=12>
  172. </TD>
  173. <TD>Configure the size, in bytes, for in-memory caching of disk files.
  174. If zero (0) is specified, no file caching is performed.  The memory cache
  175. is used to enhance the HTTP Server performance only;  there is presently
  176. no caching mechanism for HTTP Proxy requests.  For maximum performance,
  177. this should be set to the cumulative size of all static files in your
  178. document directories.  (Note:  The FTP Server and DNS Server also use this
  179. memory cache).
  180. </TD></TR>
  181.  
  182. <TR valign=top><TD width=20%><FONT SIZE=+1>Resolve Host Names</FONT>
  183. <P>
  184. <INPUT TYPE=radio NAME="resolvedns" VALUE="true" <RCif RCEresolvedns = true> CHECKED<RCendif>>
  185. <B>Yes</B><BR>
  186. <INPUT TYPE=radio NAME="resolvedns" VALUE="false" <RCif RCEresolvedns = false> CHECKED<RCendif>>
  187. <B>No</B><BR>
  188. </TD>
  189. <TD>Configure the server to perform a DNS lookup on every host connection
  190. to resolve the hostname.  <I>WARNING: </I>This requires communicating with
  191. a DNS server which can be quite slow if not properly configured.  You
  192. should absolutely NOT turn this feature on if your DNS server is on the
  193. other side of a WAN, modem dial-up, or if you expect user heavy traffic.
  194. </TD></TR>
  195.  
  196. <TR valign=top><TD width=20%><FONT SIZE=+1>Automatic Directory Lists</FONT>
  197. <P>
  198. <INPUT TYPE=radio NAME="showdirs" VALUE="true" <RCif RCEshowdirs = true> CHECKED<RCendif>>
  199. <B>Yes</B><BR>
  200. <INPUT TYPE=radio NAME="showdirs" VALUE="false" <RCif RCEshowdirs = false> CHECKED<RCendif>>
  201. <B>No</B><BR>
  202. </TD>
  203. <TD>If no default index page is present, this boolean indicates whether
  204. the server should display the contents of the directory.
  205. </TD></TR>
  206.  
  207. <TR valign=top><TD width=20%><FONT SIZE=+1>Enforce .htaccess</FONT>
  208. <P>
  209. <INPUT TYPE=radio NAME="htaccess" VALUE="true" <RCif RCEhtaccess = true> CHECKED<RCendif>>
  210. <B>Yes</B><BR>
  211. <INPUT TYPE=radio NAME="htaccess" VALUE="false" <RCif RCEhtaccess = false> CHECKED<RCendif>>
  212. <B>No</B><BR>
  213. </TD>
  214. <TD>HTAccess Authentication was first implemented in NCSA and has since 
  215. become a de-facto standard for file-based access authentication.  See the
  216. documentation for additional information on this functionality.
  217. </TD></TR>
  218.  
  219. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI stderr</FONT>
  220. <P>
  221. <INPUT TYPE=radio NAME="cgistderr" VALUE="true" <RCif RCEcgistderr = true> CHECKED<RCendif>>
  222. <B>Yes</B><BR>
  223. <INPUT TYPE=radio NAME="cgistderr" VALUE="false" <RCif RCEcgistderr = false> CHECKED<RCendif>>
  224. <B>No</B><BR>
  225. </TD>
  226. <TD>If turned on, the CGI STDERR output is returned to the client as received
  227. from the CGI application.  In false (the default), only CGI STDOUT output is 
  228. returned to the client.
  229. </TD></TR>
  230.  
  231. <TR valign=top><TD width=20%><FONT SIZE=+1>ISAPI Debug Level</FONT>
  232. <P>
  233. <SELECT NAME=isapidbg>
  234. <OPTION <RCif RCEisapidbg = None> SELECTED<RCendif>> None
  235. <OPTION <RCif RCEisapidbg = Basic> SELECTED<RCendif>> Basic
  236. <OPTION <RCif RCEisapidbg = Call> SELECTED<RCendif>> Call
  237. <OPTION <RCif RCEisapidbg = Full> SELECTED<RCendif>> Full
  238. </SELECT>
  239. </TD>
  240. <TD>The debug level for ISAPI applications.
  241. <P>
  242. <UL>
  243. <LI><B>None</B>: No logging of any kind.
  244. <LI><B>Basic</B>: Log only ISAPI function failures.
  245. <LI><B>Call</B>: Trace all ISAPI function calls.
  246. <LI><B>Full</B>: Detailed trace of each ISAPI call (for developers only).
  247. </UL>
  248. </TD></TR>
  249.  
  250. <TR valign=top><TD width=20%><FONT SIZE=+1>Automatic Log Rotation</FONT>
  251. <P>
  252. <SELECT NAME="autolog">
  253. <OPTION VALUE="never" <RCif RCEautolog = never OR RCEautolog = false> SELECTED<RCendif>> No log rotation
  254. <OPTION VALUE="daily" <RCif RCEautolog = daily OR RCEautolog = true> SELECTED<RCendif>> Rotate Daily
  255. <OPTION VALUE="weekly" <RCif RCEautolog = weekly> SELECTED<RCendif>> Rotate Weekly
  256. <OPTION VALUE="monthly" <RCif RCEautolog = monthly> SELECTED<RCendif>> Rotate Monthly
  257. </SELECT>
  258. </TD>
  259. <TD>If turned on, the server log files (www, proxy, mail, dhcp etc.) will be 
  260. automatically rotated and a WWW log report will be automatically run.  
  261. The log reports are available through the system administration <I>Report</I> 
  262. interface.  
  263. </TD></TR>
  264.  
  265. <TR valign=top><TD width=20%><FONT SIZE=+1>Home Page</FONT>
  266. <P>
  267. <INPUT TYPE=text NAME="homepage" VALUE="<RCEhomepage>" SIZE=30 MAXSIZE=30>
  268. </TD>
  269. <TD>The HTTP document served when users request the home page (/) from the server.
  270. </TD></TR>
  271.  
  272. <TR valign=top><TD width=20%><FONT SIZE=+1>Default Page(s)</FONT>
  273. <P>
  274. <INPUT TYPE=text NAME="defpage" VALUE="<RCEdefpage>" SIZE=30 MAXSIZE=40>
  275. </TD>
  276. <TD>The HTTP page served when users request a page from a directory without
  277. specifying a path to a URL.  This can be a space separated list of file
  278. names (i.e. index.htm index.html index.shtml).
  279. </TD></TR>
  280.  
  281. <TR valign=top><TD width=20%><FONT SIZE=+1>Documents Directory</FONT>
  282. <P>
  283. <INPUT TYPE=text NAME="docsdir" VALUE="<RCEdocsdir>" SIZE=30 MAXSIZE=60>
  284. </TD>
  285. <TD>The directory in which documents are served out of.  If not preceded by
  286. a drive letter (i.e. d:\wwwdir), this directory is assumed to be relative to
  287. the installation directory of the Sambar Server (<RCErootdir>).
  288. </TD></TR>
  289.  
  290. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI Directory</FONT>
  291. <P>
  292. <INPUT TYPE=text NAME="cgidir" VALUE="<RCEcgidir>" SIZE=30 MAXSIZE=60>
  293. </TD>
  294. <TD>The directory in which cgi-bin scripts are served out of.  The
  295. CGI directory must be found in the installation directory of the 
  296. Sambar Server.  The Sambar Server CGI plug-in module can be used to
  297. execute CGI applications outside the CGI directory.
  298. </TD></TR>
  299.  
  300. <TR valign=top><TD width=20%><FONT SIZE=+1>WinCGI Directory</FONT>
  301. <P>
  302. <INPUT TYPE=text NAME="wincgidir" VALUE="<RCEwincgidir>" SIZE=30 MAXSIZE=60>
  303. </TD>
  304. <TD>The directory in which Windows CGI scripts are served out of.  The
  305. WinCGI directory must be found in the installation directory of the 
  306. Sambar Server.  The Sambar Server WinCGI plug-in module can be used to
  307. execute WinCGI applications outside the WinCGI directory.
  308. </TD></TR>
  309.  
  310. <TR valign=top><TD width=20%><FONT SIZE=+1>ISAPI Extensions</FONT>
  311. <P>
  312. <INPUT TYPE=text NAME="isapiext" VALUE="<RCEisapiext>" SIZE=30 MAXSIZE=40>
  313. </TD>
  314. <TD>This should be a space separated list of ISAPI extensions that, if found
  315. in the Documents Directory should be recognized as a DLL with
  316. ISAPI extensions executed (i.e. *.dll).  
  317. If left blank, ISAPI extension cannot be run in the Doucments
  318. Directory (with the exception of any direct execute ISAPI DLLs found
  319. in the <B>[isapi]</B> section).
  320. </TD></TR>
  321.  
  322. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI Extensions</FONT>
  323. <P>
  324. <INPUT TYPE=text NAME="cgiext" VALUE="<RCEcgiext>" SIZE=30 MAXSIZE=40>
  325. </TD>
  326. <TD>This should be a space separated list of CGI extensions that, if found
  327. in the Documents Directory  should be recognized as CGI scripts and
  328. executed (i.e. *.cgi *.exe *.pl).  
  329. If left blank, only scripts found in the <I>CGI Directory</I> are 
  330. treated as CGI scripts.
  331. </TD></TR>
  332.  
  333. <TR valign=top><TD width=20%><FONT SIZE=+1>WinCGI Extensions</FONT>
  334. <P>
  335. <INPUT TYPE=text NAME="wincgiext" VALUE="<RCEwincgiext>" SIZE=30 MAXSIZE=40>
  336. </TD>
  337. <TD>This should be a space separated list of WinCGI extensions that, if found
  338. in the Documents Directory  should be recognized as CGI scripts and
  339. executed (i.e. *.cgi *.exe).  
  340. If left blank, only scripts found in the <I>WinCGI Directory</I> are 
  341. treated as WinCGI scripts.
  342. </TD></TR>
  343.  
  344. <TR valign=top><TD width=20%><FONT SIZE=+1>Server Side Includes</FONT>
  345. <P>
  346. <INPUT TYPE=text NAME="ssi" VALUE="<RCEssi>" SIZE=30 MAXSIZE=30>
  347. </TD>
  348. <TD>A space separated list of HTML file extensions that correspond with 
  349. files containing server side includes (i.e. shtml sht).  As parsing 
  350. server-side include files is expensive, it is recommended that the 
  351. extensions be limited to <I>shtml</I>.
  352. </TD></TR>
  353.  
  354. <TR valign=top><TD width=20%><FONT SIZE=+1>Prohibit Script #exec</FONT>
  355. <P>
  356. <P>
  357. <INPUT TYPE=radio NAME="noscriptexec" VALUE="true" <RCif RCEnoscriptexec = true> CHECKED<RCendif>>
  358. <B>Yes</B><BR>
  359. <INPUT TYPE=radio NAME="noscriptexec" VALUE="false" <RCif RCEnoscriptexec = false> CHECKED<RCendif>>
  360. <B>No</B><BR>
  361. </TD>
  362. <TD>Server-side include scripts may contain #exec directives that execute
  363. arbitrary server-side scripts.  If untrusted users are permitted to upload
  364. documents to your server, you should prohibit the use of this directive.
  365. </TD></TR>
  366.  
  367. <TR valign=top><TD width=20%><FONT SIZE=+1>Log Format</FONT>
  368. <P>
  369. <SELECT NAME="logformat">
  370. <OPTION VALUE="performance" <RCif RCElogformat = performance> SELECTED<RCendif>> Sambar Server Format
  371. <OPTION VALUE="combined" <RCif RCElogformat = combined> SELECTED<RCendif>> NCSA Combined Log Format
  372. <OPTION VALUE="common" <RCif RCElogformat = common> SELECTED<RCendif>> NCSA Common Log Format
  373. </SELECT>
  374. </TD>
  375. <TD>The log format options are:
  376. <UL>
  377. <LI>performance - Sambar Server performance format
  378. <LI>combined - NCSA combined log format
  379. <LI>common - NCSA Common Log Format
  380. </UL>
  381. </TD></TR>
  382.  
  383. <TR valign=top><TD width=20%><FONT SIZE=+1>Don't Log IPs</FONT>
  384. <P>
  385. <INPUT TYPE=text NAME="noip" VALUE="<RCEnoip>" SIZE=30 MAXSIZE=30>
  386. </TD>
  387. <TD>A space separated list of IP addresses not to log requests from.
  388. This list may use wild-cards to match against (i.e. <B>127.0.0.1 140.172*</B> ).
  389. </TD></TR>
  390.  
  391. <TR valign=top><TD width=20%><FONT SIZE=+1>Don't Log Requests</FONT>
  392. <P>
  393. <INPUT TYPE=text NAME="noreq" VALUE="<RCEnoreq>" SIZE=30 MAXSIZE=30>
  394. </TD>
  395. <TD>A space separated list of requests not to log.
  396. This list may use wild-cards to match against (i.e. <B>*.jpg *.gif /foo*</B> ).
  397. </TD></TR>
  398.  
  399. <TR valign=top><TD width=20%><FONT SIZE=+1>Log Buffer Size</FONT>
  400. <P>
  401. <INPUT TYPE=text NAME="logsize" VALUE="<RCElogsize>" SIZE=12 MAXSIZE=12>
  402. </TD>
  403. <TD>Configure the maximum number of lines permitted in the server log 
  404. file (server.log).  Once this number is reached for a server session,
  405. the log is reset to the first line (it operates much like a circular buffer).
  406. For an infinite log size, set the log size value to 0.
  407. </TD></TR>
  408.  
  409. <TR valign=top><TD width=20%><FONT SIZE=+1>Compress Content</FONT>
  410. <P>
  411. <INPUT TYPE=radio NAME="compress" VALUE="true" <RCif RCEcompress = true> CHECKED<RCendif>>
  412. <B>Yes</B><BR>
  413. <INPUT TYPE=radio NAME="compress" VALUE="false" <RCif RCEcompress = false> CHECKED<RCendif>>
  414. <B>No</B><BR>
  415. </TD>
  416. <TD>Enable <A HREF="/syshelp/perf.htm">compression</A> of content 
  417. served up by the Sambar Server.  
  418. </TD></TR>
  419.  
  420. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable ASP Engine</FONT>
  421. <P>
  422. <INPUT TYPE=radio NAME="asp" VALUE="true" <RCif RCEasp = true> CHECKED<RCendif>>
  423. <B>Yes</B><BR>
  424. <INPUT TYPE=radio NAME="asp" VALUE="false" <RCif RCEasp = false> CHECKED<RCendif>>
  425. <B>No</B><BR>
  426. </TD>
  427. <TD>Enable the <A HREF="/syshelp/cscript/cscript.htm">ASP/CScript</A> Engine 
  428. in the Sambar Server.  
  429. </TD></TR>
  430.  
  431. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable WebDAV</FONT>
  432. <P>
  433. <INPUT TYPE=radio NAME="webdav" VALUE="true" <RCif RCEwebdav = true> CHECKED<RCendif>>
  434. <B>Yes</B><BR>
  435. <INPUT TYPE=radio NAME="webdav" VALUE="false" <RCif RCEwebdav = false> CHECKED<RCendif>>
  436. <B>No</B><BR>
  437. </TD>
  438. <TD>Enable the experimental <A HREF="/syshelp/webdav.htm">WebDAV</A> and
  439. <A HREF="/syshelp/version.htm">versioning</A> functionality in the Sambar 
  440. Server.  Enabling WebDAV results in significant enhancement to the 
  441. Document Manager.
  442. </TD></TR>
  443.  
  444. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable JavaEngine</FONT>
  445. <P>
  446. <INPUT TYPE=radio NAME="javaeng" VALUE="true" <RCif RCEjavaeng = true> CHECKED<RCendif>>
  447. <B>Yes</B><BR>
  448. <INPUT TYPE=radio NAME="javaeng" VALUE="false" <RCif RCEjavaeng = false> CHECKED<RCendif>>
  449. <B>No</B><BR>
  450. </TD>
  451. <TD>Enable the Sambar Server JavaEngine module.  The JavaEngine implements
  452. the Java 1.2 Servlet interface.  See the 
  453. <A HREF=/syshelp/javaeng.htm>JavaEngine Help</A> pages for configuration
  454. help.  The Sun Java JDK must be installed prior to enabling this 
  455. functionality.
  456. </TD></TR>
  457.  
  458. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable DBMS Usage</FONT>
  459. <P>
  460. <INPUT TYPE=radio NAME="usedbms" VALUE="true" <RCif RCEusedbms = true> CHECKED<RCendif>>
  461. <B>Yes</B><BR>
  462. <INPUT TYPE=radio NAME="usedbms" VALUE="false" <RCif RCEusedbms = false> CHECKED<RCendif>>
  463. <B>No</B><BR>
  464. </TD>
  465. <TD>Enable the DBMS interface of the Sambar Server.  The DBMS interface
  466. must be initialized to use the DBMS scripting.  Once configured, the 
  467. DBMS management interfaces become available in the System Administration
  468. console. (Note: You must have ODBC installed to enable this option.)
  469. </TD></TR>
  470.  
  471. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as HTTPS Server</FONT>
  472. <P>
  473. <INPUT TYPE=radio NAME="httpsserver" VALUE="true" <RCif RCEhttpsserver = true> CHECKED<RCendif>>
  474. <B>Yes</B><BR>
  475. <INPUT TYPE=radio NAME="httpsserver" VALUE="false" <RCif RCEhttpsserver = false> CHECKED<RCendif>>
  476. <B>No</B><BR>
  477. </TD>
  478. <TD>Start the SSL HTTP Server when the Sambar Server is started (in addition
  479. to the HTTP server).  There are several additional configuration elements
  480. associated with installing and running SSL on the Sambar Server.
  481. See the <A HREF="/syshelp/ssl.htm">SSL documentation</A> for more details.
  482. </TD></TR>
  483.  
  484. <RCif RCElicense = pro>
  485. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as Mail Server</FONT>
  486. <P>
  487. <INPUT TYPE=radio NAME="mailserver" VALUE="true" <RCif RCEmailserver = true> CHECKED<RCendif>>
  488. <B>Yes</B><BR>
  489. <INPUT TYPE=radio NAME="mailserver" VALUE="false" <RCif RCEmailserver = false> CHECKED<RCendif>>
  490. <B>No</B><BR>
  491. </TD>
  492. <TD>Start the Mail Server when the Sambar Server is started (in addition
  493. to the HTTP server).  Additional Mail configuration parameters must be
  494. entered via the Mail Configuration forms on the System Administration
  495. pages.  User mailboxes are created using the User Management forms.  
  496. <I>WARNING: </I>  At this time, the Mail Server is not mature and 
  497. should not be used in production environments.
  498. </TD></TR>
  499. <RCendif>
  500.  
  501. <RCif RCElicense = pro>
  502. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as DNS Server</FONT>
  503. <P>
  504. <INPUT TYPE=radio NAME="dnsserver" VALUE="true" <RCif RCEdnsserver = true> CHECKED<RCendif>>
  505. <B>Yes</B><BR>
  506. <INPUT TYPE=radio NAME="dnsserver" VALUE="false" <RCif RCEdnsserver = false> CHECKED<RCendif>>
  507. <B>No</B><BR>
  508. </TD>
  509. <TD>Start the DNS Server/Proxy when the Sambar Server is started.
  510. Additional DNS configuration parameters must be entered via the 
  511. DNS Configuration forms on the System Administration pages.
  512. The functionality of this server/proxy is outlined on the
  513. <A HREF="/syshelp/dns.htm">DNS</A> system help pages.
  514. </TD></TR>
  515. <RCendif>
  516.  
  517. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as FTP Server</FONT>
  518. <P>
  519. <INPUT TYPE=radio NAME="ftpserver" VALUE="true" <RCif RCEftpserver = true> CHECKED<RCendif>>
  520. <B>Yes</B><BR>
  521. <INPUT TYPE=radio NAME="ftpserver" VALUE="false" <RCif RCEftpserver = false> CHECKED<RCendif>>
  522. <B>No</B><BR>
  523. </TD>
  524. <TD>Start the FTP Server when the Sambar Server is started (in addition
  525. to the HTTP server). <I>WARNING: </I>If your machine is already running an
  526. FTP Server, the FTP Server will fail to start if the ports of the two
  527. servers conflict.</I> 
  528. </TD></TR>
  529.  
  530. <RCif RCElicense = pro>
  531. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as TFTP Server</FONT>
  532. <P>
  533. <INPUT TYPE=radio NAME="tftpserver" VALUE="true" <RCif RCEtftpserver = true> CHECKED<RCendif>>
  534. <B>Yes</B><BR>
  535. <INPUT TYPE=radio NAME="tftpserver" VALUE="false" <RCif RCEtftpserver = false> CHECKED<RCendif>>
  536. <B>No</B><BR>
  537. </TD>
  538. <TD>Start the TFTP Server when the Sambar Server is started (in addition
  539. to the HTTP server). <I>WARNING: </I>If your machine is already running an
  540. TFTP Server, the TFTP Server will fail to start if the ports of the two
  541. servers conflict.  The TFTP supports read-only access to files 
  542. found in the Sambar Server <I>tftpboot</I> directory.</I> 
  543. </TD></TR>
  544. <RCendif>
  545.  
  546. <RCif RCElicense = pro>
  547. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as Telnet Server/Proxy</FONT>
  548. <P>
  549. <INPUT TYPE=radio NAME="telnetd" VALUE="true" <RCif RCEtelnetd = true> CHECKED<RCendif>>
  550. <B>Yes</B><BR>
  551. <INPUT TYPE=radio NAME="telnetd" VALUE="false" <RCif RCEtelnetd = false> CHECKED<RCendif>>
  552. <B>No</B><BR>
  553. </TD>
  554. <TD>Start the Telnet Server & Proxy when the Sambar Server is started 
  555. (in addition to the HTTP server).  See the 
  556. <A HREF="/syshelp/telnet.htm">Telnet</A> documentation for usage details.
  557. </TD></TR>
  558. <RCendif>
  559.  
  560. <TR valign=top><TD width=20%><FONT SIZE=+1>Run Watcher</FONT>
  561. <P>
  562. <INPUT TYPE=radio NAME="watcher" VALUE="true" <RCif RCEwatcher = true> CHECKED<RCendif>>
  563. <B>Yes</B><BR>
  564. <INPUT TYPE=radio NAME="watcher" VALUE="false" <RCif RCEwatcher = false> CHECKED<RCendif>>
  565. <B>No</B><BR>
  566. </TD>
  567. <TD>Start a Watcher Daemon when the server is started to monitor the
  568. WWW server and restart it in the event of a failure.  This feature <B>can 
  569. be used</B> when the Sambar Server is run as an NT Service.
  570. </TD></TR>
  571.  
  572. <TR valign=top><TD width=20%><FONT SIZE=+1>Watcher Timeout</FONT>
  573. <P>
  574. <INPUT TYPE=text NAME="watcherto" VALUE="<RCEwatcherto>" SIZE=12 MAXSIZE=12>
  575. </TD>
  576. <TD>Configure the delay in seconds between each wwwping of the server
  577. by the watcher daemon.  This time should exceed 60 seconds (300 is the default).
  578. After two consecutive connect failures, the Sambar Server will be terminated
  579. and restarted by the Watcher Daemon.
  580. </TD></TR>
  581.  
  582. <TR valign=top><TD nowrap width=20%><FONT SIZE=+1>NTP Server</FONT><BR>
  583. <INPUT TYPE=text NAME="ntp" VALUE="<RCEntp>" SIZE=30 MAXSIZE=80><BR>
  584. </TD>
  585. <TD>Specify an NTP server (network time protocol) to use to synchronize
  586. the server's clock with at the specified cron period.  See 
  587. <A HREF="http://www.ntp.org">www.ntp.org</A> for a list of public NTP 
  588. servers. If the NTP server
  589. or cron period is left blank, synchronization will not occur.  An example
  590. cron period would be <B> 0 1 * * * </B>, which equates to every nigth at 1AM.
  591. <BR>
  592. <B><I>Cron</I></B> <INPUT TYPE=text NAME="ntpcron" VALUE="<RCEntpcron>" MAXSIZE=12>
  593. </TD></TR>
  594.  
  595. </TABLE>
  596. <P>
  597. <CENTER>
  598. <HR>
  599. <INPUT TYPE=submit VALUE="Update Server Configuration">
  600. </FORM>
  601. <P>
  602. <HR>
  603. </CENTER>
  604. <BR>
  605. <A HREF="/"><IMG border=0 SRC="/sysimage/system/powerby.gif"></A>
  606. </BODY>
  607. </HTML>
  608.