SWAG Reverse proxy and server outside of container network

Is something changed in past few months because I can not seem to reverse proxy my non docker server while using swag any longer (new installation).

location /devtestpage/ {
proxy_pass http://127.0.0.1:8080/devtestpage/;
proxy_set_header X-Forwarded-For $remote_addr;
}
Where should I put this stuff?

Nothing significant changed apart from how we handle websockets.

You can try using the template in the proxy-confs folder and it should work as long as the app already has support for that base url

Ah, docker has its own localhost… so I need to refer my computer’s IP address. Sometimes these things are too obvious. :flushed:

Thanks anyway.