Reverse proxy getting 502 Bad Gateway errors #2811
Replies: 4 comments 10 replies
-
Why are you using the proxy image ? |
Beta Was this translation helpful? Give feedback.
-
Nordvpn process is to contact nordvpn's api to get the best server available (lower usage, fit settings) and download its config file. without dns or internet access the connection cannot be established. As you defined a server, the file path is given by the api, and the file downloaded. As logged, dns resolution is failing in the container when using the user defined networked (my_net) and nothing mentioned earlier will occur. dns resolution is the first check. You may set DEBUG env var to see commands running. I have traefik as reverse proxy with a user defined network. I had hard to configure it, but now it works as expected. transmission logs are located in config/transmission-home. |
Beta Was this translation helpful? Give feedback.
-
I'm also struggling with 504 timeout errors using the bundled reverse proxy. Don't think it's all ipv6 related but this does show up in the log: transmission-openvpn-1 | 2024-03-19 14:48:54 WARNING: OpenVPN was configured to add an IPv6 route. However, no IPv6 has been configured for tun0, therefore the route installation may fail or may not work as expected. |
Beta Was this translation helpful? Give feedback.
-
PS had to use 8081, as already got jitsi on 8080 |
Beta Was this translation helpful? Give feedback.
-
I've got a separate container running an Nginx reverse proxy. It is using a user defined network and I've got several subdomains (all in containers) running behind it with no issues. I've added a
/
to the end of the proxy URL as described in the docs and I've disabled UFW on the host. I've looked at thedocker logs
output and it isn't helpful. I don't see anywhere in the docs where the location of any other log files are.Here is my
docker-compose.yml
:I don't know if the container is doing what it is suppoed to be doing or not. The documentation is... confusing... The Supported providers page makes it seem like if
IPVANISH
,NORDVPN
,PIA
, orVYPRVPN
are your provider, then the config will be downloaded for you or something? Best I can tell that hasn't happend. Theconfig
anddata
directories mapped involumes
are both empty. Any pointers as to what might be happening would be appreciated.Update 1:
I entered the container and ran
curl localhost:9091
as described here and I got this errorcurl: (7) Failed to connect to localhost port 9091 after 0 ms: Couldn't connect to server
, so apparently transmission isn't starting with the container. I get the same error when I remove my custom network configuration and make thedocker-compose.yml
file "stock".Update 2:
I've been performing the steps listed here and all of them had the expected output until I performed the steps in the Running with a valid configuration section with my NORDVPN credentials. Here is the output:
Update 3
I was using the
haugene/transmission-openvpn-proxy:5.3.1
image, but I changed to thehaugene/transmission-openvpn:5.3.1
image and now I'm getting a new set of errors:Beta Was this translation helpful? Give feedback.
All reactions