mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
14 lines
375 B
Plaintext
14 lines
375 B
Plaintext
# Replace example.com with your domain
|
|
|
|
<VirtualHost *:80>
|
|
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
|
|
</VirtualHost>
|