reverse proxing into a dir
Hi,
i have Gancio reverse proxed into a subdir of my site, let's say /agenda
here is Apache config
ProxyPreserveHost On
ProxyPass /agenda/ http://localhost:13120/
ProxyPassReverse / /agenda http://localhost:13120/
in config.json I have
"baseurl": "https://www.mysite.org/agenda"
if I open www.mysite.org/agenda some content is served, but some (all .js) are getting a 404, and that's because they are called like this
https://www.mysite.org/_nuxt/06c423d.modern.js
instead of
https://www.mysite.org/agenda/_nuxt/06c423d.modern.js that checks ok.
In your opinion could this be a problem of my setup? Is there any additional config I have to try?
Thank you for any help
Alessiof