Hello, I have a problem with the avatar display. See screenshot.
the url for jira is https://jira.mysite.com/ but jira is trying to load the avatar over http http://jira.mysite.com. I checked the base url of jira and it is configured correctly to https://jira.mysite.com/. Here is my jira server setup
internet --> modem/router[port mapping 443] ---> nginx server with reverseproxy ---> jira server [running op port 8080].
Any help is appreciated
Dear Jinxi,
What have you entered in your server.XML? Did you enter a HTTPS redirect port and such?
Friendly Regards,
Jeremy Mooiman
This is my config in server.xml
<Connector port="8080"
maxThreads="150"
minSpareThreads="25"
connectionTimeout="20000"
enableLookups="false"
maxHttpHeaderSize="8192"
protocol="HTTP/1.1"
useBodyEncodingForURI="true"
redirectPort="8443"
acceptCount="100"
disableUploadTimeout="true"
bindOnInit="false"/>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Jinxi,
You should add the scheme and such;
scheme="https"
proxyName="yoursite.example.com"
proxyPort="443"
So;
<Connector port="8080"
maxThreads="150"
minSpareThreads="25"
connectionTimeout="20000"
scheme="https"
proxyName="yoursite.example.com"
proxyPort="443"
enableLookups="false"
maxHttpHeaderSize="8192"
protocol="HTTP/1.1"
useBodyEncodingForURI="true"
redirectPort="8443"
acceptCount="100"
disableUploadTimeout="true"
bindOnInit="false"/>
Friendly Regards,
Jeremy Mooiman
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.