502 bad gateway Nginx

Better Stack Team
Updated on November 9, 2023

If you are getting the 502 bad gateway error when accessing a Nginx server, here are a few solutions:

Check if Nginx is running

To check if Nginx is running run the following command:

 
systemctl status nginx

You will see the following output if the Nginx is running:

 
nginx.service - The nginx HTTP Server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: active (running) since Tue 2019-11-19 09:37:46 UTC; 2 days ago
     Docs: https://httpd.nginx.org/docs/2.4/

Or this output if the server is not running:

 
nginx.service - The nginx HTTP Server
   Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
   Active: inactive (dead) since Fri 2019-11-22 08:41:01 UTC; 39s ago
     Docs: https://httpd.nginx.org/docs/2.4/

To start the Nginx in case it is not running, run the following command:

 
systemctl start nginx

Then check the status again and make sure that Nginx remains running.

• If Nginx did not start after a reboot, you could enable it so that it starts after the next reboot:

 
systemctl enable nginx

Check the config syntax

To check the config syntax, run the following command:

 
nginx -t

If there is a problem with the config syntax, it will be listed in the output of this command. You will need to fix each problem and then restart Nginx using the following command:

 
systemctl restart nginx

Check the error logs

If Nginx is running and config syntax is OK, run the following command to display error logs:

 
tail -f /var/log/nginx/error.log

Check for the permissions

Check the permissions of the files and folders in your document root. Find the user that your Nginx service is running as:

 
ps auxf | grep nginx

If you are using Ubuntu, the user should be www-data, so you would need to make sure that your files and folders are owned by that user, so Nginx could read and write to those files:

 
chown -R www-data:www-data /var/www/yourdomain.com

Other options

Check if Nginx is binding to the default ports:

 
netstat -plant | grep '80\|443'
Got an article suggestion? Let us know
Explore more
Licensed under CC-BY-NC-SA

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Make your mark

Join the writer's program

Are you a developer and love writing and sharing your knowledge with the world? Join our guest writing program and get paid for writing amazing technical guides. We'll get them to the right readers that will appreciate them.

Write for us
Writer of the month
Marin Bezhanov
Marin is a software engineer and architect with a broad range of experience working...
Build on top of Better Stack

Write a script, app or project on top of Better Stack and share it with the world. Make a public repository and share it with us at our email.

community@betterstack.com

or submit a pull request and help us build better products for everyone.

See the full list of amazing projects on github