Hello, first of all thank you for this great tool.
I have a netlify panel that proxies into my dockerized application.
Netlify Panel : https://netlify-ogreniyorum.netlify.app/
Dockerized App : 150.150.150.150:4447 (Just assuming)
Here is my _redirects file:
/yayinci/* http://150.150.150.150:4447/:splat 200
So, whenever I visit https://netlify-ogreniyorum.netlify.app/yayinci/, I want to see my dockerized application. It works, but it doesn’t load my dockerized application’s javascript and css files.
Because it sends request into https://netlify-ogreniyorum.netlify.app/js/app.js
url to fetch javascript and other files.
But if i manage to set that request url into https://netlify-ogreniyorum.netlify.app/yayinci/js/app.js
it will work.
I don’t have any idea what to do in this situation. Any idea to solve this problem?
Thanks!
Edit : If you visit https://netlify-ogreniyorum.netlify.app/yayinci/ page, go through “network” tab of the browser and you will see list of requests. It would be clearer to understand i guess.