My nginx vhost setup will serve .html files but it throws the 503 Bad Gateway error when trying to serve a .php file.
This server runs Laravel vhost with not issue, it just will not run plain .php files. Server: Ubuntu 17 server { listen 80; listen [::]:80; server_name convergeone.hudsonstreet.us; root /var/www/html/convergeone; index index.html index.php; location / { try_files $uri $uri/ =404; } location ~ \.php$ { include snippets/fastcgi-php.conf; include fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME /var/www/html/example.com/public_html$fastcgi_script_name; } } Posted at Nginx Forum: https://forum.nginx.org/read.php?2,279936,279936#msg-279936 _______________________________________________ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx