Unable to login with nginx+docker configuration

With a fresh installation of passbolt the login page loads but I cannot login (keeps redirecting), I was able to configure the server key and complete setup of a user. Console shows that CSS/JS media is failing to load and I get a 404 Not Found error when trying to load it directly. I am running passbolt under a base path behind Nginx. I’m also unable to login with the browser extension.

Environment Config
APP_FULL_BASE_URL=https://foo.peanuts.com
APP_BASE=/pass

Nginx Config

location /pass {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Host $http_host;
    proxy_pass http://127.0.0.1:8085;
    proxy_redirect off;
    auth_basic off;
}

Version: Passbolt Docker 2.11.0-debian

I

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.