Open
Description
I'm wanting to put an instance of silverbullet
behind an Nginx proxy at a particular path. For example:
location ~ /silverbullet(.*) {
proxy_pass http://127.0.0.1:3000$1;
}
However, this does not work beyond the main index page since it attempts to download assets without prepending the /silverbullet
path to the requests.
Is there a way to configure silverbullet
or Deno to use a URL path (or recompile silverbullet
with a URL path)?
I know I could just host silverbullet
at a subdomain but for this particular situation using a subdomain is not an option.