Skip to content

Instantly share code, notes, and snippets.

@alertor
Last active April 27, 2023 15:45
Show Gist options
  • Star 37 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save alertor/4977931 to your computer and use it in GitHub Desktop.
Save alertor/4977931 to your computer and use it in GitHub Desktop.
Atlassian JIRA behind nginx + SSL
# force HTTP to HTTPS - /etc/nginx/conf.d/nonssl.conf
server {
listen 80;
server_name jira.example.com;
access_log off;
return 301 https://$server_name$request_uri;
}
# /etc/nginx/conf.d/jira.conf
server {
listen 443 default ssl;
server_name jira.example.com;
access_log off;
ssl on;
ssl_certificate /etc/nginx/certs/example.com.crt;
ssl_certificate_key /etc/nginx/certs/example.com.key;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8080/;
}
}
# server.xml config file from $JIRA/conf/
# add/modify this line from <Service name="Catalina"> directive
<Connector acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" enableLookups="false" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" port="8080" protocol="HTTP/1.1" redirectPort="8443" useBodyEncodingForURI="true" scheme="https" proxyName="jira.example.com" proxyPort="443"/>
@deanet
Copy link

deanet commented May 21, 2015

thanks, save my life 😀

@bigmyx
Copy link

bigmyx commented May 27, 2015

Neat,
Simply working config.
Thanks !!

@barankaynak
Copy link

Thanks.

@leMaik
Copy link

leMaik commented Aug 4, 2015

You, fine sir, just saved my day. 👍

@stevewilliamsuk
Copy link

Thanks very much!

@sporkd2
Copy link

sporkd2 commented Nov 19, 2015

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment