21 lines
560 B
Plaintext
21 lines
560 B
Plaintext
<VirtualHost *:80>
|
|
ServerName we-share.lonely-wolf.at
|
|
|
|
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>
|