Installation behind Reverse Apache Proxy

Hi @cola,

Also, after trying what is mentioning @garrett, can you check what is the value of your environment variable APP_FULL_BASE_URL?

Or if you did not change this environment variable, then can you check the config/passbolt.php file and look for the fullBaseUrl configuration key. It should look like this:

'App' => [
    // A base URL to use for absolute links.
    // The url where the passbolt instance will be reachable to your end users.
    // This information is need to render images in emails for example
    'fullBaseUrl' => 'https://pro.passbolt.test',
],

It might be possible that your fullBaseUrl configuration is defined as http://192.168.1.100:8080 instead of http://192.168.1.100:8080/passbolt.
If that’s the case, try to change it to your desired value (http://192.168.1.100:8080/passbolt).

Let us know if that works for you.