2023-08-09 18:46:48 +00:00
|
|
|
# Replace example.com with your domain
|
2023-05-11 00:02:38 +00:00
|
|
|
|
|
|
|
<VirtualHost *:80>
|
2023-08-09 18:46:48 +00:00
|
|
|
ServerName example.com
|
2023-05-11 00:02:38 +00:00
|
|
|
# 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 18:46:48 +00:00
|
|
|
</VirtualHost>
|