what does the script have to do with nginx, apache or any proxy???
Since the CODE 2.0 release for Docker there are proxy problems when using nginx instead of apache. There was released updated configuration for apache but the ones for nginx doesn’t work (released here). The important apache lines that noone seems to know how to write in nginx are:
ProxyPass /lool/ws wss://127.0.0.1:9980/lool/ws
should be replaced by
ProxyPassMatch "/lool/(.*)/ws$" wss://127.0.0.1:9980/lool/$1/ws nocanon
# Encoded slashes need to be allowed
AllowEncodedSlashes NoDecode
And I thought that avoiding Docker would possibly solve the problem but idk.