The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Creating Project Throws 'Error creating project, XSRF check failed'

parthibarajan ranganathan
August 17, 2018

can someone help me with info to correct the error  'Error creating project, XSRF check failed' when trying to create new projects in the newly setup jira machine that is reverse proxied using nGinx

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
parthibarajan ranganathan
August 23, 2018

Resolution: 

Added the following headers in the nGinx 
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;

In Tomcat under server.xml added the following for both http and https reverse proxy with 443 as the proxy port number.

sslEnabledProtocols="TLSv1.1,TLSv1.2,TLSv1.3"
scheme="https" SSLEnabled="true" 
proxyPort="443"