### Basic server config ServerRoot "/etc/apache" ServerAdmin you@example.com #ServerName 127.0.0.1:80 # needs "mod_unixd" User _apache Group _apache ### Error logging of master process # Possible values include: debug, info, notice, warn, error, crit, LogLevel warn ErrorLog "/var/log/httpd/error_log" ### Load modules # Load MPM Include mpm-enabled/*.load Include mpm-enabled/*.conf # We can't run without these: 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 ports Include listen.conf # Admin wants these modules: IncludeOptional mods-enabled/*.load IncludeOptional mods-enabled/*.conf ### Basic security settings AllowOverride none Require all denied Require all denied DirectoryIndex index.html CustomLog "/var/log/httpd/access_log" combined ### Include additional configs IncludeOptional conf-enabled/*.conf IncludeOptional sites-enabled/*.conf