Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 380
score Avatar asked Oct 29 '25 13:10

score


1 Answers

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*

like image 123
score Avatar answered Oct 31 '25 10:10

score



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!