Level 3
It can be a browser issue, delete cache/cookies etc. Or just start in incognito mode. Doesn't hurt to try.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
curl -I jcpro.dev on Homestead env
HTTP/1.1 200 OK
Server: nginx/1.11.9
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
Cache-Control: no-cache
But when i tried to access jcpro.dev in browser on my local env, it gives 502 Bad Gateway
HTTP/1.1 502 Bad Gateway
Server: nginx/1.11.9
Date: Wed, 01 Mar 2017 18:35:59 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 173
Here is my configuration files
server {
listen 80;
listen 443 ssl http2;
server_name jcpro.dev;
root "/home/vagrant/Projects/jcpro/public";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/jcpro.dev-error.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
location ~ /\.ht {
deny all;
}
ssl_certificate /etc/nginx/ssl/jcpro.dev.crt;
ssl_certificate_key /etc/nginx/ssl/jcpro.dev.key;
}
I have tried listens to 127.0.0.01:9000 in both nginx and fpm www.conf files, it still not working.
Help me.... spending a day still can't fix it.
Please or to participate in this conversation.