Re: proxy_pass works on main page but not other pages

2022-10-30 Thread Brian Carey
Thinking it through though I think my solution is bad since it implies a dependency between the urls defined in the program and the location used in nginx, ie. they must match and the program cannot be proxied at an arbitrary location. So hopefully there is a better solution than the one I foun

Re: proxy_pass works on main page but not other pages

2022-10-30 Thread Brian Carey
Okay I seem to have solved this. I re-wrote the app urls to mount all directories under /striker, something unnecessary for the app itself but necessary for nginx to properly forward. I also removed the rewrite rule below. Thanks by the way for the help you give here. Brian On 10/30/22 11:20

proxy_pass works on main page but not other pages

2022-10-30 Thread Brian Carey
Hi, I have an app running at port 8239 on biscotty.me. If I access the app directly everything works as expected. I am able to use proxy_pass to forward https:/biscotty.me/striker to the main page of my app. The problem is that all of the links in the app result in a page not found error fro