first commit

This commit is contained in:
2026-06-29 09:52:02 +02:00
commit da2f7c3c86
31 changed files with 2306 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# EPI-Support Monitor Apache-Einbindung unter /episupport
#
# Diese Datei wird nach /etc/apache2/conf-available/episupport.conf kopiert
# und mit "a2enconf episupport" aktiviert. Sie hängt sich in den bestehenden
# Apache-VirtualHost (srhnweb) ein ein eigener VHost ist nicht nötig.
#
# Voraussetzung: Module proxy, proxy_http, headers aktiv
# a2enmod proxy proxy_http headers
<Location /episupport>
ProxyPreserveHost On
ProxyPass http://127.0.0.1:8071/
ProxyPassReverse http://127.0.0.1:8071/
# Damit die App ihre Links korrekt mit /episupport-Präfix erzeugt
RequestHeader set X-Forwarded-Prefix "/episupport"
RequestHeader set X-Forwarded-Proto "https" env=HTTPS
# Optional: Zugriff aufs interne Netz beschränken (anpassen/auskommentieren)
# Require ip 192.168.0.0/16 10.0.0.0/8 127.0.0.1
Require all granted
</Location>