1
0
Fork 1
mirror of https://example.com synced 2024-11-22 16:26:38 +09:00
firefish/firefish.apache.conf
2023-07-20 04:17:05 +09:00

13 lines
No EOL
374 B
Text

# Replace example.tld with your domain
<VirtualHost *:80>
ServerName example.tld
# 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
</VirtualHost>