„README.md“ ändern

This commit is contained in:
Bernd Reuther 2020-04-09 13:24:40 +02:00
parent b8a6c33318
commit 5828528e83

View File

@ -117,7 +117,7 @@ Wir nutzen den Apache-Webserver mit folgenden Einstellungen (Servernamen als Bei
DocumentRoot /var/www/html/ DocumentRoot /var/www/html/
SSLEngine off SSLEngine off
RewriteEngine on RewriteEngine on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
@ -128,7 +128,6 @@ Wir nutzen den Apache-Webserver mit folgenden Einstellungen (Servernamen als Bei
ServerName video.domain.tld ServerName video.domain.tld
SSLEngine on SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/domain.tld/fullchain.pem SSLCertificateFile /etc/letsencrypt/live/domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.tld/privkey.pem SSLCertificateKeyFile /etc/letsencrypt/live/domain.tld/privkey.pem
@ -140,6 +139,7 @@ Wir nutzen den Apache-Webserver mit folgenden Einstellungen (Servernamen als Bei
ProxyHTMLURLMap http://localhost:8080 / ProxyHTMLURLMap http://localhost:8080 /
<Location "/"> <Location "/">
RewriteEngine on RewriteEngine on
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC] RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC] RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
@ -149,9 +149,11 @@ Wir nutzen den Apache-Webserver mit folgenden Einstellungen (Servernamen als Bei
ProxyPass http://localhost:8080/ ProxyPass http://localhost:8080/
ProxyPassReverse http://localhost:8080/ ProxyPassReverse http://localhost:8080/
ProxyHTMLURLMap / ProxyHTMLURLMap /
</Location> </Location>
<Location "/admin"> <Location "/admin">
AuthType Basic AuthType Basic
AuthName "Restricted Content" AuthName "Restricted Content"
AuthUserFile /etc/apache2/.video-admin AuthUserFile /etc/apache2/.video-admin
@ -165,12 +167,13 @@ Wir nutzen den Apache-Webserver mit folgenden Einstellungen (Servernamen als Bei
ProxyPass http://localhost:4242/ ProxyPass http://localhost:4242/
ProxyHTMLURLMap http://localhost:4242/ ProxyHTMLURLMap http://localhost:4242/
ProxyHTMLEnable On ProxyHTMLEnable On
ProxyHTMLURLMap / / ProxyHTMLURLMap / /
RequestHeader unset Accept-Encoding RequestHeader unset Accept-Encoding
</Location> </Location>
CustomLog /var/log/apache2/video.domain.tld.log combined CustomLog /var/log/apache2/video.domain.tld.log combined
ErrorLog /var/log/apache2/video.domain.tld.error.log ErrorLog /var/log/apache2/video.domain.tld.error.log
</VirtualHost> </VirtualHost>
``` ```