我在运行Ubuntu server20.04的时候用的是连线邮件和2个网站,其中一个是WordPress。
我想安装Nextcloud,为此我必须重新安装php-fpm来生成php7.4-fpm.sock。在此之后,Nextcloud工作了,但我的其他网站停止工作的错误‘502Bad Gateway’。
所以至少可以说,我很困惑!
我按照本文的说明安装了Nextcloud,并按照说明设置了支持站点的.conf文件:https://www.linuxbabe.com/ubuntu/install-nextcloud-ubuntu-20-04-nginx-lemp-stack/amp
我想我理解了.conf文件过去监听127.0.0.1:XXXX,现在监听php7.4-fpm.sock?
这是我重新安装php-fpm后为我的网站整理的.conf文件:
#
# Note: This file must be loaded before other virtual host config files,
#
# HTTPS
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name SOMEWEBSITE www.SOMEWEBSITE;
error_log /var/log/nginx/localhost.error_log info;
root /var/www/SOMEWEBSITE/html;
index index.php index.html;
include /etc/nginx/templates/misc.tmpl;
include /etc/nginx/templates/ssl.tmpl;
include /etc/nginx/templates/iredadmin.tmpl;
include /etc/nginx/templates/roundcube.tmpl;
include /etc/nginx/templates/sogo.tmpl;
include /etc/nginx/templates/netdata.tmpl;
include /etc/nginx/templates/php-catchall.tmpl;
include /etc/nginx/templates/stub_status.tmpl;
location / {
try_files $uri $uri/ /index.php?q=$uri$args;
}
# PHP handling
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
ssl_certificate /etc/letsencrypt/live/SOMEWEBSITE/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/SOMEWEBSITE/privkey.pem; # managed by Certbot
}
# Redirect http to https
server {
listen 80;
listen [::]:80;
server_name SOMEWEBSITE www.SOMEWEBSITE;
return 301 https://$host$request_uri;
}
我已经检查了php7.4-fpm.sock的文件权限
ll /var/run/php/ | grep php
-rw-r--r-- 1 root root 3 May 22 21:13 php7.4-fpm.pid
srw-rw---- 1 www-data www-data 0 May 22 21:13 php7.4-fpm.sock=
lrwxrwxrwx 1 root root 30 May 22 21:13 php-fpm.sock -> /etc/alternatives/php-fpm.sock=
而且我认为它看起来还不错。
以下是日志文件:
2021/05/23 20:32:52 [error] 43596#43596: *305 connect() failed (111: Connection refused) while connecting to upstream, client: xx.xx.xxx.xxx, server: SOMEWEBSITE, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9999", host: "SOMEWEBSITE"
2021/05/23 20:32:53 [info] 43596#43596: *305 client xx.xx.xxx.xxx closed keepalive connection
有什么想法吗?需要更多信息吗?提前感谢您的关注。
发布于 2021-05-24 03:21:53
PHP-FPM可以使用两种方法来侦听接受fastcgi请求。使用TCP套接字或使用Unix套接字。
您可以在php-fpm配置中指定它,在Ubuntu中,配置在/etc/php/7.4/fpm/pool.d/www.conf
中,并检查listen
配置。
如果您想使用unix套接字,请使用下面的配置。
listen = /run/php/php7.4-fpm.sock
用于TCP套接字。
listen = 127.0.0.1:9000
接下来,在nginx中,您可以根据fpm配置指定fastcgi_pass
。如果你使用Unix套接字,你所有的网站,包括Nextcloud都必须使用Unix套接字。
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
如果您使用的是TCP套接字,则必须将nginx配置更改为从TCP套接字传递。
fastcgi_pass 127.0.0.1:9000;
https://stackoverflow.com/questions/67663800
复制相似问题