*** httpd.conf.ORIG Thu Oct 18 09:09:44 2007 --- httpd.conf Thu Oct 18 09:09:52 2007 *************** *** 13,21 **** # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin ! # with "/", the value of ServerRoot is prepended -- so "/var/logs/foo.log" # with ServerRoot set to "/opt/freeware/etc/httpd" will be interpreted by the ! # server as "/opt/freeware/etc/httpd//var/logs/foo.log". # # ServerRoot: The top of the directory tree under which the server's --- 13,21 ---- # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin ! # with "/", the value of ServerRoot is prepended -- so "/var/log/httpd/foo.log" # with ServerRoot set to "/opt/freeware/etc/httpd" will be interpreted by the ! # server as "/opt/freeware/etc/httpd/var/log/httpd/foo.log". # # ServerRoot: The top of the directory tree under which the server's *************** *** 29,34 **** --- 29,40 ---- ServerRoot "/opt/freeware/etc/httpd" # + # PidFile: The file in which the server should record its process + # identification number when it starts. + # + PidFile /var/run/httpd.pid + + # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the # directive. *************** *** 98,104 **** LoadModule proxy_http_module /opt/freeware/lib/httpd/modules/mod_proxy_http.so LoadModule proxy_ajp_module /opt/freeware/lib/httpd/modules/mod_proxy_ajp.so LoadModule proxy_balancer_module /opt/freeware/lib/httpd/modules/mod_proxy_balancer.so - LoadModule ssl_module /opt/freeware/lib/httpd/modules/mod_ssl.so LoadModule mime_module /opt/freeware/lib/httpd/modules/mod_mime.so LoadModule dav_module /opt/freeware/lib/httpd/modules/mod_dav.so LoadModule status_module /opt/freeware/lib/httpd/modules/mod_status.so --- 98,103 ---- *************** *** 127,134 **** # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # ! User daemon ! Group daemon # 'Main' server configuration --- 126,133 ---- # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # ! User apache ! Group apache # 'Main' server configuration *************** *** 148,154 **** # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ! ServerAdmin you@example.com # # ServerName gives the name and port that the server uses to identify itself. --- 147,153 ---- # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ! ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. *************** *** 240,246 **** # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. # ! ErrorLog /var/logs/error_log # # LogLevel: Control the number of messages logged to the error_log. --- 246,252 ---- # logged here. If you *do* define an error logfile for a # container, that host's errors will be logged there and not here. # ! ErrorLog /var/log/httpd/error_log # # LogLevel: Control the number of messages logged to the error_log. *************** *** 269,281 **** # define per- access logfiles, transactions will be # logged therein and *not* in this file. # ! CustomLog /var/logs/access_log common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # ! #CustomLog /var/logs/access_log combined --- 275,287 ---- # define per- access logfiles, transactions will be # logged therein and *not* in this file. # ! CustomLog /var/log/httpd/access_log common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # ! #CustomLog /var/log/httpd/access_log combined *************** *** 314,320 **** # ScriptSock: On threaded servers, designate the path to the UNIX # socket used to communicate with the CGI daemon of mod_cgid. # ! #Scriptsock /var/logs/cgisock # --- 320,326 ---- # ScriptSock: On threaded servers, designate the path to the UNIX # socket used to communicate with the CGI daemon of mod_cgid. # ! Scriptsock /var/log/httpd/cgisock #