RedpointArchive / phabricator

A Docker image that runs Phabricator, an open source software engineering tool
https://hub.docker.com/r/redpointgames/phabricator/
307 stars 98 forks source link

No notifications server support #79

Closed kuba-orlik closed 7 years ago

kuba-orlik commented 7 years ago

By default, the setup does not enable the node-based notification server

kuba-orlik commented 7 years ago

As it turns out, this image has support for the aphlict notification server. It was my nginx ssl reverse proxy configuration that was faulty. I forgot to pass the "Connection" headers during proxying. This is the nginx configuration that I should have used:

        location / {
                client_max_body_size 20m;
                proxy_pass http://localhost:62080;
                proxy_set_header Host $http_host;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection 'upgrade';
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }