Forums

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

Service Unavailable Error SSL Apache Proxy Letsencrypt

Coronahelfer_Team
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 23, 2020

Hey guys,

i´ve enabled the SSL Proxy but if i visit my URL this is what happens:

Service Unavailable

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

 

HTTP Conf:

 

<VirtualHost *:443>
    ServerName jira.xxx.eu

    ProxyRequests Off

    <Proxy *>
         Require all granted
    </Proxy>

    <Location *>
        Require all granted
    </Location>
    ProxyPreserveHost Off
    ProxyRequests Off

    ProxyPass /jira http://jira.xxx.eu:8080/jira retry=0 connectiontimeout=600 timeout=600 nocanon
    ProxyPassReverse /jira http://jira.xxx.eu:8080/jira
    SSLCertificateFile /etc/letsencrypt/live/jira.xxx.eu/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/jira.xxx.eu/privkey.pem
    Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>

<VirtualHost *:80>
    ServerName jira.xxx.eu
    Redirect Permanent /jira https://jira.xxx.eu/jira
</VirtualHost>

Firewall Rules:
ports: 8080/tcp 80/tcp 8443/tcp public opened

1 answer

0 votes
Daniel Ebers
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 28, 2020

Hi,

welcome to Atlassian Community!

Basically this generic error message means Apache is not able to contact Tomcat (configured on port 8080 from your config snippet).

From Apache log files it should be possible to dig deeper on what is missing. Additionally have a look at Jira logs.

Without having a look at the log files and without further knowledge on the setup it is rather hard to track down the cause of this error.

Cheers,
Daniel

Suggest an answer

Log in or Sign up to answer