I installed bamboo in a test environment, when i visit https://dev.xxx.com, it is redirected to https://dev.xxx.com/userlogin!doDefault.action?os_destination=%2Fstart.action?os_destination=%2Fstart.action
os_destination=%2Fstart.action appears twice in the url, so after i login i got an error page.
I used Nginx as a HTTPS reverse proxy. And http between Nginx and Bamboo Tomcat.
Nginx:
server {
listen 443 ssl;
server_name dev.xxx.com;
ssl_certificate xxx.crt;
ssl_certificate_key xxx.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
access_log xxx.log;
error_log xxx.log;
location / {
proxy_pass http://ip6-localhost:8085;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
server {
listen 80;
server_name dev.xxx.com;
rewrite ^(.*)$ https://$server_name$request_uri permanent;
}
Bamboo:
<Service name="Catalina">
<Connector
protocol="HTTP/1.1"
port="8085"
maxThreads="150" minSpareThreads="25"
connectionTimeout="20000"
disableUploadTimeout="true"
acceptCount="100"
enableLookups="false"
maxHttpHeaderSize="8192"
useBodyEncodingForURI="true"
URIEncoding="UTF-8"
/>

Please help. Thanks.