mirror of
https://github.com/wekan/wekan.git
synced 2025-04-21 20:47:06 -04:00
wss websocket config. Chrome web console supports http/2. Note: If you are already using Caddy and have modified your Caddyfile, you need to edit your Caddyfile manually. Thanks to xet7 ! Related #934
18 lines
369 B
Caddyfile
18 lines
369 B
Caddyfile
http://:8080
|
|
proxy / localhost:3001 {
|
|
websocket
|
|
transparent
|
|
}
|
|
|
|
## SSL/TLS example. Firefox Inspect Console does not support http/2, so turning it off
|
|
## so that Firefox would not show wss websocket errors. Chrome console supports http/2.
|
|
#
|
|
#wekan.example.com {
|
|
# tls {
|
|
# alpn http/1.1
|
|
# }
|
|
# proxy / localhost:3001 {
|
|
# websocket
|
|
# transparent
|
|
# }
|
|
#}
|