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/000-default.conf
2025-03-07 14:59:06 +01:00

19 lines
467 B
Plaintext

<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot /var/www/html
ServerName localhost
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Enable directory indexing
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Enable rewrite engine
RewriteEngine On
RewriteOptions Inherit
</VirtualHost>