Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,211
Community Members
 
Community Events
184
Community Groups

502 proxy error with reverse proxy using apache

Hi

 

I did everything in this article to try to enable SSL in my jira server installation:

https://confluence.atlassian.com/kb/proxying-atlassian-server-applications-with-apache-http-server-mod_proxy_http-806032611.html

 

I want the jira to be accessible with URL suporte.mydomain.com, so apache configuration looks like:

 

<VirtualHost *:80>
ServerName suporte.mydomain.com
Redirect Permanent / https://suporte.mydomain.com
</VirtualHost>


<VirtualHost *:443>
ServerName suporte.mydomain.com
ProxyRequests Off
ProxyVia Off

<Proxy *>
Require all granted
</Proxy>

SSLProxyEngine on
<Location />
ProxyPass https://suporte.mydomain.com
ProxyPassReverse https://suporte.mydomain.com:8080
</Location>

SSLEngine ON
SSLCertificateFile mysslpath/cert.pem
SSLCertificateKeyFile mtsslpath/privkey.pem
SSLCertificateChainFile mysslpat/chain.pem
</VirtualHost>

 

In server.xml I commented the default connector and uncommented the HTTPS proxy connector, so it looks like:

<Connector port="8080" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^&#x5c;&#x60;&quot;&lt;&gt;"
maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false"
maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443"
acceptCount="100" disableUploadTimeout="true" bindOnInit="false" secure="true" scheme="https"
proxyName="suporte.mydomain.com" proxyPort="443"/>

 

I restarted htttp and jira services, but when I try to access suporte.mydomain.com, I got the following error with 502 HTTP code.

Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /.

Reason: Error reading from remote server

 

If I access http://suporte.mydomain.com:8080 jira opens as usual, with some login/sesison issues (users are logged out immediatly after logging in).

What am I doing wrong?

1 answer

1 accepted

0 votes
Answer accepted

I double checked my apache configuration and it is working now.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
VERSION
8.9
TAGS
AUG Leaders

Atlassian Community Events