Octopus behind reverse proxy authentication problems

I’m trying to get Octopus working behind a reverse proxy, Nginx.
But I get an error when accessing the site:

Sorry, could not connect to the Octopus Deploy server.
There was a problem with your request.

The error occurs when requesting http://octopus.aceofspace.se/api/users/me
Which returns a “403 Forbidden: all proposed auth schemes denied” response.

Octopus works when accessing it locally.

My guess is that it is some header setting missing in the proxy but I don’t know which.
Here is the config. I have just thrown in as much things I could find and the commented stuff is some of the things I’ve tested.

server {
    listen       80;
    server_name  octopus.example.com;
    error_log logs/octopus.log error;
    
    location / {
        proxy_http_version  1.1;
        proxy_set_header    Host 127.0.0.1:8080;
        proxy_set_header    X-Forwarded-Host octopus.example.com;
        proxy_set_header    X-Forwarded-Proto $scheme;
        proxy_set_header    X-Forwarded-For $remote_addr;
        proxy_set_header    Upgrade $http_upgrade;
        proxy_set_header    Connection "upgrade";
        #proxy_set_header   Authorization Bearer;
        #proxy_set_header   Authorization 'OctopusApiKey realm="octopus.example.com"';
        #add_header         Authorization 'OctopusApiKey realm="octopus.example.com"';
        proxy_cookie_domain localhost octopus.example.com;

        proxy_pass   http://127.0.0.1:8080;
    }
}

Screen_Shot_2017-09-08_at_10.44.37.png

Hi Patrik,

Thanks for getting in touch! Are you able to confirm that you have seen the following documentation?

The documentation has a lot of information on configuring your Octopus server to run behind a reverse proxy.

If you are still receiving this error, would you be able to provide me with any errors in your browsers developers console while trying to login?

Looking forward to hearing from you. :slight_smile:

Best regards,
Daniel