我刚刚将 AWS 上的 ubunut 服务器从 Ubuntu 16.x 升级到 Ubuntu 20.04.1 LT
一开始我在升级时遇到了一些问题,但我能够克服这些问题。一旦我升级了,虽然我无法让 nginx 运行并再次实际使用我的网站。
在查看了我的 nginx.conf 和错误之后,这一行导致了一个错误:
nclude /etc/nginx/sites-enabled/*;
启用站点的示例文件与我的实际网站文件一起存在,因此我将其更改为:
include /etc/nginx/sites-enabled/mywebsite.net;
一旦我提出了这个问题,我就可以让 nginx 启动并运行,但是当我试图查看我的网站时,我得到了 502 错误。
在查看日志时,我能够拉出这条线:
2020/11/25 15:27:02 [crit] 12327#12327: *1 connect() to unix:/var/run/php/php7.2-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: xx.xx.xx.xx, server: www.mywebsite.net, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.2-fpm.sock:", host: "www.mywebsite.net"
所以我回到我的/sites-enabled/mywebsite.net
文件,我相信这就是问题所在,因为没有指向正确的 php 位置:
location ~ .php$ {
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
但我不确定下一步该怎么做才能让它指向 php 的正确位置?