Spaces:
Build error
Build error
File size: 1,508 Bytes
3ab56e0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <VirtualHost *:80>
ServerName localhost
# ── Backend API ──────────────────────────────────────────────────────────
Alias /api /var/www/api
<Directory /var/www/api>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# ── User websites ─────────────────────────────────────────────────────────
# Reads the X-Username header sent by your app to serve the right folder
UseCanonicalName Off
DocumentRoot /var/www/html
<Directory /data/sites>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# ── Logging ───────────────────────────────────────────────────────────────
ErrorLog /data/logs/apache_error.log
CustomLog /data/logs/apache_access.log combined
# ── Security headers ──────────────────────────────────────────────────────
Header always set X-Content-Type-Options "nosniff"
Header always set X-Frame-Options "SAMEORIGIN"
</VirtualHost> |