Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Is this article still accurate?

Tom Jackson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 27, 2016

This question is in reference to Atlassian Documentation: How to use NGINX to proxy requests for Confluence

I can't get it to work as documented with Confluence 5.9.

I can come close with the following nginx.conf file:

server {
     ...
    location /blah/ {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://stupefied_franklin:8090/blah/;
    }
}

Note that I had to put a trailing slash after blah.

The resulting configuration mostly does the job, but with one critical exception: the create space dialog opens but spins forever (the space blueprint icons never load) ...

Does someone have an example nginx.conf and server.xml file I can use as reference?

1 answer

0 votes
Daniel Eads _unmonitored account_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 30, 2016

Hi Thomas,

Here's the relevant location portion from our nginx config:

location / {
        proxy_pass          http://localhost:8090;
        proxy_set_header    X-Forwarded-Host $host;
        proxy_set_header    X-Forwarded-Server $host;
        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header    X-Real-IP $remote_addr;
        proxy_redirect      off;
        client_max_body_size 10M;
        proxy_connect_timeout 30s;
    }

And the connector from server.xml:

<Connector port="8090" connectionTimeout="20000" redirectPort="8443"
                maxThreads="200" minSpareThreads="10"
                enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
                protocol="HTTP/1.1"
                scheme="https"
                proxyName="wiki.example.org"
                proxyPort="443"/>

We're currently on 5.9.4; previously we were on 5.7.1 with the same configuration. We are terminating TLS at nginx, so the scheme and proxyPort settings in server.xml should be updated to http and 80 if you're not using nginx for SSL/TLS.

 

It's also worth checking to make sure the baseURL in Confluence is correct.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events