502 Bad Gateway nginx (1.9.7) in Homestead [ Laravel 5 ]

10,293

Solution 1

Finally solved this here. I want to thank Miguel from laracast discussion.

You need to change your configuration file under:

/etc/nginx/sites-enabled

change line fastcgi_pass for

 fastcgi_pass unix:/run/php/php7.0-fpm.sock;

php7.0-fpm.sock is located under:

/var/run/php

Since the new VM uses php 7.* and your configuration file might have the php location for 5.6 version.

Then restart Nginx and PHP

sudo service nginx restart

sudo service php7.*-fpm restart

7.3 and the xdebug version in Homestead 8..* are incompatible. Further info found here*

Solution 2

try this in /etc/php/7.0/fpm/pool.d/www.conf

listen.owner = nginx
listen.group = nginx
listen.mode = 0660

finally restart php7.0-fpm

service php7.0-fpm restart

Solution 3

I've got same error, 502 Bad Gateway (Ngix 1.blablabla)

It's EASY to solve it.

just type into your terminal.

if your VM is running:

vagrant reload --provision

else:

vagrant halt

and later:

vagrant up --provision
Share:
10,293
score
Author by

score

Updated on June 24, 2022

Comments

  • score
    score almost 2 years

    Did google and various other search engines but still could not sort it out. Here is my scenario:

    Larave 5 on homestead

    1) ps -eo pid,comm,euser,supgrp | grep nginx [following is the output ]

    2333 nginx root root 2335 nginx vagrant adm,cdrom,sudo,dip,www-data,plugdev,lpadmin,sambashare,vagrant

    2) Based on some search result, did make the following on : /etc/php/7.0/fpm/pool.d

    listen.owner = www-data
    listen.group = www-data
    listen.mode = 0660

    3) Output with sudo service php7.0-fpm restart

    • Restarting PHP 7.0 FastCGI Process Manager php-fpm7.0 [ OK ]

    4) Output with sudo service nginx restart

    nginx stop/waiting
    nginx start/running, process 2650

    5)output with :

    sudo /etc/init.d/nginx restart
    
    • Restarting nginx nginx [fail]

    6)output with: tail -f /var/log/nginx/error.log

    > 2015/12/26 15:35:23 [notice] 2088#2088: signal process started
    2015/12/26 15:45:23 [notice] 2266#2266: signal process started
    2015/12/26 15:45:23 [alert] 2095#2095: *9 open socket #3 left in connection 5
    2015/12/26 15:45:23 [alert] 2095#2095: aborting
    2015/12/26 15:49:02 [alert] 2303#2303: *1 open socket #3 left in connection 3
    2015/12/26 15:49:02 [alert] 2303#2303: aborting
    2015/12/26 16:00:39 [notice] 2475#2475: signal process started
    2015/12/26 16:02:25 [notice] 2525#2525: signal process started
    2015/12/26 16:03:08 [notice] 2565#2565: signal process started
    2015/12/26 16:14:45 [notice] 2645#2645: signal process started
    

    ` I am just having bad time with this 502 Bad Gateway

    > nginx/1.9.7
    

    and php

    > PHP 7.0.1-1+deb.sury.org~trusty+2 (cli) ( NTS )
    

    ` If anyone can please help me move on with this situation, that would be great. And, thank you in advance.