You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run audiobookshelf on my private Dyndns-URI (subdomain) behind a proxy with a virtual path which should provide the URI https://mydomain.com/audiobooks/ and internally redirect to http://<ip>:7331 (where audiobookshelf is hosted)..
Unfortunately it is a technical limitation and it is just not possible for me to configure a specific subdomain (like https://audiobookshelf.mydomain.com). Therefore I would like to run it behind an NGINX proxy:
The problem is, that all scripts are referenced with absolute paths (leading /), which leads to /_nuxt/319933d.js and other scripts beeing requested from https://mydomain.com/_nuxt/319933d.js and not from https://mydomain.com/_nuxt/319933d.js.
I think that should be configurable with some baseUri=https://mydomain.com/audiobooks/ variable.
Would that be possible?
The text was updated successfully, but these errors were encountered:
Yeah you have it right, we need to add a base url from env variables for the client side to work. Then there is the server and mobile apps. I've attempted to add this once before and it was more complicated then it seems. There is another issue open for this already though #385
Describe the feature/enhancement
Hello,
I'm trying to run
audiobookshelf
on my private Dyndns-URI (subdomain) behind a proxy with a virtual path which should provide the URIhttps://mydomain.com/audiobooks/
and internally redirect tohttp://<ip>:7331
(whereaudiobookshelf
is hosted)..Unfortunately it is a technical limitation and it is just not possible for me to configure a specific subdomain (like
https://audiobookshelf.mydomain.com
). Therefore I would like to run it behind an NGINX proxy:The problem is, that all scripts are referenced with absolute paths (leading
/
), which leads to/_nuxt/319933d.js
and other scripts beeing requested fromhttps://mydomain.com/_nuxt/319933d.js
and not fromhttps://mydomain.com/_nuxt/319933d.js
.I think that should be configurable with some
baseUri=https://mydomain.com/audiobooks/
variable.Would that be possible?
The text was updated successfully, but these errors were encountered: