apache config files hinzugefügt, Readme angepasst

This commit is contained in:
2025-08-20 13:48:45 +02:00
parent 14c4fa8439
commit 63cddbd781
4 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
<VirtualHost *:443>
ServerName recording.example.tld
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/example.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.tld/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
Protocols h2 http/1.1
# Logging
ErrorLog ${APACHE_LOG_DIR}/recording_error.log
CustomLog ${APACHE_LOG_DIR}/recording_access.log combined
# Proxy-Einstellungen
ProxyPreserveHost On
ProxyRequests Off
<Proxy *>
Require all granted
</Proxy>
ProxyPass "/" "http://127.0.0.1:1234/"
ProxyPassReverse "/" "http://127.0.0.1:1234/"
Header always set X-Content-Type-Options "nosniff"
Header always set X-Frame-Options "SAMEORIGIN"
Header always set X-XSS-Protection "1; mode=block"
</VirtualHost>