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
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"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.