-
I want to serve Biigle on subdirectory of domain, i.e. https://mydomain/biigle/, for example.
I can get initial layouts. But if internally routes to login/logout/search ..., no surprise got 404. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
I'm not an expert in NGINX as reverse proxy but shouldn't this be enough? upstream biigle {
server 127.0.0.1:8008;
}
location /biigle/ {
proxy_pass https://biigle/;
} You shouldn't need a rewrite or an extra location for You also need to configure the |
Beta Was this translation helpful? Give feedback.
I'm not an expert in NGINX as reverse proxy but shouldn't this be enough?
You shouldn't need a rewrite or an extra location for
assets|vendor|...
as this is handled by the webserver of the BIIGLE Docker container.You also need to configure the
APP_URL
to the correct URL (with subdirectory) but this does not affect regular links in the application.