This repository has been archived on 2025-12-24. You can view files and clone it, but cannot push or open issues or pull requests.
site-template/systems/config/apache2.conf
2025-03-07 14:59:06 +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