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 XV 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 website 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 XV by default uses both option 1 and option 2. Option 1: To test your website without being connected to the Internet, Uniform Server Zero XV uses a PAC file. For the above example, the following line is automatically added to this file:
Option 2: To test your website without being connected to the Internet, Uniform Server Zero XV 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 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.lua 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. The default is set to off. 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 reserved 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 XV 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 In order to display a file after changing Apache's listening port, 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, enter the address http://localhost:8080/ into your browser address bar. Likewise, to view any other page in your root folder www, enter http://localhost:8080/mypage.html to display that page. Note 1: When the server starts, the correct port number is automatically added to the address and redirection takes place to the splash page. Using the above port, you will see http://localhost:8080/us_splash/index.php displayed in the address bar. Note 2: For more information on changing ports, see Change Apache ports --oOo--
|