This menu allows you to change commonly configured Apache options. OverviewThe Uniform Server Zero's default installation configures the main server with the values shown at right. Apache > Edit Basic and Modules > Edit Basic Configuration
Server NameServer Name sets the hostname of your server. (This is used when creating redirection URLs). UniServer Zero XI does not directly change the server name in configuration files. It first sets the environment variable US_SERVERNAME which is picked-up by configuration files using ${US_SERVERNAME}. Both the main configuration file httpd.conf and httpd-vhosts.conf use this variable. It is the default host in the Vhost configuration file. To test your web site without being connected to the Internet and to prevent your browser complaining that the "Server cannot be found", you need to use one of the following options. UniServer Zero XI by default uses both option 1 and option2. Option 1: To test your web site without being connected to the Internet Uniform Server Zero XI uses a PAC file. For the above example, the following line is automatically added to this file:
Option 2: To test your web site without being connected to the Internet Uniform Server Zero XI adds an entry to your PC’s hosts file. For the above example, the following line is automatically added to this file: Note: This option is not portable for portability use option 1. However before changing Server Name or creating a Vhost disable option 2 as follows:
General note:
Host Name Resolution OrderThe following is a general sequence for host name resolution:
Server Admin EmailThe Server Admin Email address is included with some automatically generated error pages sent to a client (user). Use a real e-mail address for users to contact you in case problems are encountered. Note: To eliminate common typing errors the e-mail address format is checked. The following are examples of correct format: example@example.co.uk, example@fred.com and example@example.eu Error checking is a complex procedure and it is possible your valid e-mail address will be rejected. In this situation you need to edit the configuration files UniServerZ\core\apache2\conf\httpd.conf and or UniServerZ\core\apache2\conf\extra\httpd-vhosts.conf as appropriate. Directory Index FilesWhen a client requests an index page without explicitly specifying it (for example www.fred.com) the list of index pages specified in Direct Index Files is searched in the order left to right. If a match is found, that index page is served. The first one that matches is served and any others that may be in the same folder are ignored. Default list: index.html index.shtml index.html.var index.htm index.php3 index.php index.pl index.cgi The Uniform Server’s default installation uses index.php, which is found in the root folder www. If you insert your own index.html page, this will be picked up first, overriding index.php Server Side IncludesSSI is a server side scripting language allowing you to include the contents of a file into another using SSI commands. To insert these commands, a special comment tag is used; for example:
You can insert these into an html file, but in order to process them, Apache needs to know which files types to use. The standard file extensions are:
You can specify any file extension you like, even .htm and .html, but there is a small processing hit for each file accessed. Server SignatureThis allows Apache to add a footer line for server-generated documents. It contains the server version number, server name, and creates a "mailto:" reference to ServerAdmin. For security reasons, this information is normally not displayed except for testing and the default is set to off. Lua ModuleLua Module allows you to run dynamic web pages written in Lua script. A web page with the file extension .lua is passed to the Lua engine for processing for details see Mod Lua page PLua ModulePLua Module allows you to run dynamic web pages written in Lua, HTML pages use in-line Lua script similar to PHP. A web page with the file extension .plua is passed to the Lua engine for processing for details see Mod Lua page Listen PortThis tells Apache to listen to a specific port and to accept incoming requests only on that port. Web page servers and all web browsers default to this standard port (80), which is reserverd for World Wide Web traffic (WWW). When a user types an address into a browser, the port is automatically assumed unless overridden, as explained later. Similar to the server name UniServer Zero XI does not directly change the server port in configuration files. It first sets the environment variable AP_PORT which is picked-up by configuration files using ${AP_PORT}. Both the main configuration file httpd.conf and httpd-vhosts.conf use this variable. Port 80 already in use If another program is using port 80, you will want to change the listening port to avoid conflicts, or your Apache server will not start. Before changing the Apache port, be aware that this makes the server non-standard. A preferable solution is to change the port of the conflicting program. Apache already running You can change the port while the server is running, but you must restart the servers after making any changes. The new settings will then be picked up by Apache. General Note After changing Apache's listing port, in order to display a file you must include this port number in the host name. For example suppose you have changed the port to 8080. To view your home page you enter the following address http://localhost:8080/ into your browser address bar. Likewise to view any other page in your root folder www you would enter http://localhost:8080/mypage.html to display that page. Note 1: Note 2: --oOo--
|