iceshrimp-161sh/docs/examples/iceshrimp.apache.conf

14 lines
375 B
Plaintext
Raw Permalink Normal View History

2023-08-09 20:46:48 +02:00
# Replace example.com with your domain
<VirtualHost *:80>
2023-08-09 20:46:48 +02:00
ServerName example.com
# For WebSocket
ProxyPass "/streaming" "ws://127.0.0.1:3000/streaming/"
# Proxy to Node
ProxyPass "/" "http://127.0.0.1:3000/"
ProxyPassReverse "/" "http://127.0.0.1:3000/"
ProxyPreserveHost On
# For files proxy
AllowEncodedSlashes On
2023-08-09 20:46:48 +02:00
</VirtualHost>