display issue on Jira / Confluence with Nginx config

Jon Lavercombe March 9, 2018

Hi wondering if someone can help, i've tried to setup jira and confluence with nginx but the display doesnt look correct, it only seems to loads the basic html (see attached image) this Untitled.jpg


server {
listen 80;
server_name localhost;

#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /confluence {
client_max_body_size 100m;
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_pass http://10.171.2.32:8090/;
}
location /jira {
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_pass http://10.171.2.32:8088/;
client_max_body_size 10M;
}

1 answer

0 votes
Mirek
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 9, 2018
Bas van Westerloo July 8, 2018

Having the same problem but no sollution yet

Suggest an answer

Log in or Sign up to answer