Refer to many configuration tutorials on the Internet, but they all failed and reported a 502 error.
My current configuration is like this: /opt/bksite/nginx/conf/bitnami/bitnami.conf
File
server {
listen 80;
server_name localhost;
proxy_buffer_size 128k;
proxy_buffers 8 256k;
proxy_busy_buffers_size 256k;
set $root_path '/home/paiyang-admin/public/';
root $root_path;
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php;
}
include "/opt/bksite/nginx/conf/bitnami/phpfastcgi.conf";
include "/opt/bksite/nginx/conf/bitnami/bitnami-apps-prefix.conf";
}
/opt/bksite/nginx/conf/bitnami/phpfastcgi.conf
The file is as follows
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_read_timeout 300;
fastcgi_pass unix:/opt/bksite/php/var/run/www.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
please help.
Try configuring like this
Look for the specific reason in errorlog, this is how I solved it