| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #=========================================================================#
- # 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/webmail.*.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
|