我刚得到了新的16英寸显示屏,它随附操作系统:catalina。
Catalina预先安装了php7.3,并且还确定它随附了php-fpm
which php-fpm -> /usr/sbin/php-fpm
我从自制软件安装了nginx,我可以看到localhost:8080正常工作。 但我遇到的问题是尝试使用以下配置在ubuntu机器上运行一个项目。
server {
listen 80;
listen 443;
server_name wurl.io musicblog.myapps music.ngrok.io;
root /Users/john-doe/php/projects/musicblog/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
client_max_body_size 128m;
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; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
当我访问“ musicblog.myapps”时,我得到了502错误的网关。
我猜可能是这条线
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
因为.sock的路径不存在,而且我似乎无法弄清楚Macbook上的路径。
我还尝试了旧博客文章推荐的此解决方案
fastcgi_pass 127.0.0.1:9000
但似乎没有任何效果。