X-Git-Url: https://git.pld-linux.org/?a=blobdiff_plain;f=apache-httpd.conf;h=eaec1ea171a99b537610535d5b942170bc21d310;hb=9f74302323ea335606d12d60dd7f5e8feba6e211;hp=25a390d40a5efc8f8c74bb0967c7b88c427e2a74;hpb=098439c9079354bd0170c7277f50208b8c314156;p=packages%2Fapache.git diff --git a/apache-httpd.conf b/apache-httpd.conf index 25a390d..eaec1ea 100644 --- a/apache-httpd.conf +++ b/apache-httpd.conf @@ -1,5 +1,3 @@ -# $Id$ -# # This is the main Apache HTTP server configuration file. # It contains the configuration directives that give the server its instructions. # @@ -10,7 +8,9 @@ # for a discussion of each configuration directive. ServerRoot "/etc/httpd" -DefaultType text/plain + +LoadModule unixd_module modules/mod_unixd.so + # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for @@ -29,9 +29,9 @@ Listen 80 # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such -# as error documents. e.g. admin@your-domain.com +# as error documents. e.g. admin@example.com # -ServerAdmin you@example.com +ServerAdmin root@example.com # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify @@ -53,21 +53,39 @@ ErrorLog logs/error_log # alert, emerg. LogLevel warn -Timeout 300 +Timeout 60 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 5 -UseCanonicalName On +UseCanonicalName Off AccessFileName .htaccess -ServerTokens Full +ServerTokens Prod ServerSignature On HostnameLookups Off +#AddDefaultCharset UTF-8 + +TraceEnable Off # Include other modules and packages config. -Include conf.d/*.conf +IncludeOptional conf.d/*.conf # Include webapps config -Include webapps.d/*.conf +IncludeOptional webapps.d/*.conf + +# +# Set a timeout for how long the client may take to send the request header +# and body. +# The default for the headers is header=20-40,MinRate=500, which means wait +# for the first byte of headers for 20 seconds. If some data arrives, +# increase the timeout corresponding to a data rate of 500 bytes/s, but not +# above 40 seconds. +# The default for the request body is body=20,MinRate=500, which is the same +# but has no upper limit for the timeout. +# To disable, set to header=0 body=0 +# + + RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500 + # ScriptAlias: This controls which directories contain server scripts. @@ -83,8 +101,30 @@ Include webapps.d/*.conf AllowOverride None Options None + Require all granted + + Order allow,deny Allow from all + +# VirtualHost: Allows the daemon to respond to requests for more than one +# server address, if your server machine is configured to accept IP packets +# for multiple addresses. This can be accomplished with the ifconfig +# alias flag, or through kernel patches like VIF. + +# Any apache.conf conf directive may go into a VirtualHost command. +# See also the BindAddress entry. + +# Setup default vhost (first one defined in config) and include vhosts configuration + + ServerName localhost +# ServerAdmin webmaster@host.example.com +# DocumentRoot /www/docs/host.example.com +# ErrorLog logs/host.example.com-error_log +# TransferLog logs/host.example.com-access_log + + +IncludeOptional vhosts.d/*.conf