site-library/systems/config/apache2.conf
2025-03-08 21:04:49 +01:00

40 lines
836 B
ApacheConf

# Global Apache configuration file
DefaultRunUser www-data
DefaultRunGroup www-data
Timeout 300
ServerSignature Off
ServerTokens Prod
ServerRoot "/var/www/html"
PidFile ${APACHE_PID_FILE}
UserDir ${APACHE_HOMEDIR}
ServerName "localhost"
# Default directives for all directories
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Default directives for Apache directory
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Directory for serving content
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Include all additional modules
Include mods-enabled/*.load
Include mods-enabled/*.conf
# Include virtual hosts
Include sites-enabled/*.conf