Files
weshare/we-share.conf
T

21 lines
560 B
Plaintext
Raw Normal View History

2025-12-17 09:45:08 +00:00
<VirtualHost *:80>
2025-12-17 10:51:14 +01:00
ServerName we-share.lonely-wolf.at
2025-12-17 09:45:08 +00:00
ErrorLog ${APACHE_LOG_DIR}/pingvin_error.log
CustomLog ${APACHE_LOG_DIR}/pingvin_access.log combined
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
ProxyTimeout 600
Timeout 600
# Upload-Größe, falls nötig, nicht limitieren
LimitRequestBody 0
# X-Forwarded-* Header durchreichen
RequestHeader set X-Forwarded-Proto "http"
RequestHeader set X-Forwarded-For "%{REMOTE_ADDR}s"
</VirtualHost>