123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- ServerRoot "/etc/apache"
- ServerAdmin you@example.com
- User _apache
- Group _apache
- LogLevel warn
- ErrorLog "/var/log/httpd/error_log"
- Include mpm-enabled/*.load
- Include mpm-enabled/*.conf
- LoadModule authz_core_module /usr/libexec/httpd/mod_authz_core.so
- LoadModule log_config_module /usr/libexec/httpd/mod_log_config.so
- LoadModule unixd_module /usr/libexec/httpd/mod_unixd.so
- Include listen.conf
- IncludeOptional mods-enabled/*.load
- IncludeOptional mods-enabled/*.conf
- <Directory />
- AllowOverride none
- Require all denied
- </Directory>
- <Files ".ht*">
- Require all denied
- </Files>
- <IfModule dir_module>
- DirectoryIndex index.html
- </IfModule>
- <IfModule log_config_module>
- CustomLog "/var/log/httpd/access_log" combined
- </IfModule>
- IncludeOptional conf-enabled/*.conf
- IncludeOptional sites-enabled/*.conf
|