Back to blog
DevOps3 min readPublished on June 28, 2026 · Reviewed on July 21, 2026

Nginx 502 Bad Gateway Error: Causes and How to Fix It

The 502 Bad Gateway error in Nginx can cause serious downtime in web applications. In this article, we explore causes, diagnostics, and fixes.

E

Erlan Carreira

Software Engineer & Entrepreneur

Editorial image for the article Nginx 502 Bad Gateway Error: Causes and How to Fix It
Editorial image for the article Nginx 502 Bad Gateway Error: Causes and How to Fix It

Error 502 Nginx: Causes and How to Resolve

The 502 Bad Gateway error in Nginx indicates that the server was unable to obtain a valid response from an upstream server. This can cause serious disruptions in web applications, affecting user experience and service reliability.

This error typically occurs in environments where Nginx acts as a reverse proxy, redirecting requests to application servers such as Node.js, PHP-FPM, among others. The technical impact is significant, as users may be prevented from accessing critical application functionalities.

Probable Causes

  • Inactive or misconfigured upstream server
  • Network issues between Nginx and the upstream server
  • Connection timeouts
  • Configuration errors in Nginx

Diagnosis

To diagnose the 502 error, follow the steps below:

  1. Check the Nginx logs at /var/log/nginx/error.log for error messages.
  2. Check if the upstream server is running and accessible.
  3. Test connectivity between Nginx and the upstream server using curl.

Step-by-Step Fix

Below are the steps to fix the 502 error:

  1. Check the upstream server configuration in the Nginx configuration file:
  2. server {
        listen 80;
        server_name example.com;
    
        location / {
            proxy_pass http://127.0.0.1:3000;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
        }
    }
  3. Ensure that the upstream server is running:
  4. systemctl status service-name
  5. Check the timeouts in Nginx:
  6. proxy_read_timeout 90;
    proxy_connect_timeout 90;
  7. Restart Nginx after making changes:
  8. sudo systemctl restart nginx

Production Risks

Resolving the 502 error is critical for service continuity. Ignoring this error can lead to a negative user experience and loss of revenue. Additionally, improper configuration can result in security vulnerabilities.

Prevention

To prevent future 502 errors, consider the following practices:

  • Regularly monitor the health of the upstream server.
  • Implement a load balancing system.
  • Set up alerts for errors in Nginx.

FAQ

What is a 502 Bad Gateway error?

It is an error that indicates that the Nginx server was unable to obtain a valid response from an upstream server.

How can I tell if the problem is with Nginx or the upstream server?

Check the Nginx logs and test connectivity with the upstream server using curl.

Is it safe to restart Nginx to fix the 502 error?

Yes, restarting Nginx can help apply new configurations and resolve temporary issues.

Cause Symptom How to Confirm Fix
Inactive upstream server 502 Error Nginx Logs Start the upstream server
Connection timeouts 502 Error Nginx Logs Increase timeouts in Nginx
Network issues 502 Error Connectivity test Resolve network issues

References and Next Steps

To design diagnostics, authentication, and recovery from the ground up, learn about our APIs and integrations service.

E

Erlan Carreira

Software Engineer & Entrepreneur

Specialist in software development, automation, and SaaS. I write about technology, digital business, AI, and engineering practices for teams committed to execution excellence.

Back to blog