I can't connect to my company website. it shows service unavailable.
Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Apache/2.4.18 (Ubuntu) Server at Port 44
I tried to track using curl command and it returned 503 Service Unavailable.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head> <title>503 Service Unavailable</title>
</head>
<body> <h1>Service Unavailable</h1> <p>The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.</p> <hr> <address>Apache/2.4.18 (Ubuntu) Server at 47.254.196.130 Port 80</address>
</body>
</html>I checked the apache error.log. It showed
apache proxy error failed to make connection to backend 127.0.0.1Can anyone help??? Thanks
01 Answer
This sort of error usually requires a multi-step fix with a little back and forth. The first thing you might want to do is add this to your virtual host configuration:
ProxyPass / retry=0 timeout=5Then restart Apache. This is not a complete solution, but the first part of one.
1