Replies: 6 comments
-
Related #914 , (I think). I'm reverse-proxying just fine, the issue is what you say that the app expects |
Beta Was this translation helpful? Give feedback.
-
yeah so in #914 the CORS issue comes when the system thinks its looping back on itself via the IP and PORT that's generally when CORS comes into play and the header needs to be added |
Beta Was this translation helpful? Give feedback.
-
@Deses also are you reverse proxying via nginx? |
Beta Was this translation helpful? Give feedback.
-
I'm using Nginx Proxy Manager on a docker in Unraid. |
Beta Was this translation helpful? Give feedback.
-
@dc232 This would be a proxy configuration issue, not the speedtest. I would suggest doing simple host name proxy routing, ie However, according to some quick searches for nginx proxy on stackoverflow / stackexchange, you need a trailing ie use
Relevant stackexchange link |
Beta Was this translation helpful? Give feedback.
-
Moving this to a discussion as it's not an issue specifically with Speedtest Tracker. |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
Essentially I would like a way to integrate a reverse proxy configuration into nginx so that we don't have to remember the port numbers for the application, currently, I have the following configuration in nginx
within /home/dc/docker_configurations/nginx/config/nginx/site-confs/default.conf
looking at the logs reveals that we are getting a 502 when reverse proxying suggesting a problem in the config
however, within the application, there does not appear to be an option to set the base URL from the application itself to make it understand that the path to the application has now gone from
http:${IP}:PORT
to
http:${IP}:BASE_URL
Describe the solution you'd like
Some documentation on how to set up the reverse proxy with the appropriate headers that need to be be passed into the application would be ideal
Additional context
in terms of some headers that can be passed into the application some that i have found from other applications include
i hope the above helps in terms of determining the correct headers to pass into the configuration without dev help I don't think I can do much more than the above
Beta Was this translation helpful? Give feedback.
All reactions