Reiseblog mit CMS

This commit is contained in:
Burkhard Naumann 2026-05-30 00:09:33 +02:00
commit 7f820a6478
19 changed files with 600 additions and 0 deletions

View file

@ -0,0 +1,15 @@
# Nur der ZUSÄTZLICHE VirtualHost für den Git-Host (Forgejo).
# Deine bestehenden vHosts für www/apex bleiben unangetastet.
#
# Ablegen als: /etc/apache2/sites-available/git-sattelfest.conf
# Aktivieren: sudo a2ensite git-sattelfest && sudo systemctl reload apache2
# HTTPS danach mit certbot ergänzen (siehe Anleitung).
<VirtualHost *:80>
ServerName git.sattelfest.org
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
</VirtualHost>