| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- #=======================================================================#
- # Hestia Apache configuration file #
- # DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST! #
- #=======================================================================#
- ServerRoot "/etc/httpd"
- Timeout 30
- KeepAlive Off
- MaxKeepAliveRequests 100
- KeepAliveTimeout 10
- <IfModule mpm_prefork_module>
- StartServers 8
- MinSpareServers 5
- MaxSpareServers 20
- ServerLimit 256
- MaxClients 200
- MaxRequestsPerChild 4000
- </IfModule>
- <IfModule mpm_worker_module>
- StartServers 2
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- MaxClients 200
- MaxRequestsPerChild 4000
- </IfModule>
- <IfModule mpm_event_module>
- StartServers 2
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- MaxClients 200
- MaxRequestsPerChild 4000
- </IfModule>
- User apache
- Group apache
- AccessFileName .htaccess
- <Files ~ "^\.ht">
- Order allow,deny
- Deny from all
- Satisfy all
- </Files>
- TypesConfig /etc/mime.types
- DefaultType None
- HostnameLookups Off
- ErrorLog /var/log/httpd/error.log
- LogLevel warn
- # Include module configuration:
- Include conf.modules.d/*.conf
- # Include list of ports to listen on and which to use for name based vhosts
- Include conf/ports.conf
- LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
- LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
- LogFormat "%h %l %u %t \"%r\" %>s %O" common
- LogFormat "%{Referer}i -> %U" referer
- LogFormat "%{User-agent}i" agent
- LogFormat "%b" bytes
- Include conf.d/*.conf
- IncludeOptional conf.d/domains/*.conf
- ErrorDocument 403 /error/403.html
- ErrorDocument 404 /error/404.html
- ErrorDocument 500 /error/50x.html
- ErrorDocument 501 /error/50x.html
- ErrorDocument 502 /error/50x.html
- ErrorDocument 503 /error/50x.html
- ErrorDocument 506 /error/50x.html
|