所以,我發布了一個答案,因為在兩次乾淨重新安裝之後,我已經設定了不同的東西(以我的觀點)。就像我上面說的,我面臨著一個困境,因為我擁有的配置都與我能找到的任何其他答案不同。例如 :
我的 /etc/nginx 資料夾的基本構成如下:
|- /etc/nginx/
| |- conf.d/
| | |- default.conf
| |
| |- fastcgi_params
| |- mime.types
| |- modules/ -> /usr/lib/nginx/modules
| |- nginx.conf
| |- scgi_params
| |- uwsgi_params
到處都沒有 /sites-available 或 /sites-enabled ,提到的 fastcgi-php.conf 實際上是根資料夾中的 fastcgi_params ,因此我的預設值不在 site-available 資料夾中。
這是我現在擁有的兩個設定檔(網域隱藏在 my_domain.com 下):第一個:nginx.conf(幾乎不受影響)
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
include /etc/nginx/sites-available/*.conf;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
其次是/etc/nginx/conf.d/default.conf
server {
listen 80;
server_name my_domain.com www.my_domain.com;
location / {
root /var/www/www.my_domain.com;
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/www.my_domain.com;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
#if (!-f $document_root$fastcgi_script_name) {
# return 404;
#}
root /var/www/www.my_domain.com;
# fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
我還添加了一行
text/php php;
對於 mime.types 我還記得刪除我使用的瀏覽器(Firefox、Opera 和 Chrome)中 my_domain 的快取。
但文件仍然被下載。
我做錯了什麼 ?
編輯:因為我想建立一個 blog.my_domain.com、shop.my_domain.com 和 forum._mydomain.com,所以我建立了 /site-available 和 /site-enabled 資料夾,打算建立一個 blog/forum/shop . my_domain.com.conf 位於/sites-available 中每個同名資料夾中,但我正在等待工作配置以使它們在nginx.conf 中可見(帶有包含行,對吧?)。
所以我不太明白這兩個資料夾是如何運作的。子網域的 CNAME 記錄設定為 my_domain.com。我還閱讀了有關為這些子網站創建符號連結的信息,但我真的不知道從哪裡到哪裡?再次感謝
錯誤日誌告訴我與 /var/run/php/ 的連線被拒絕。預設用戶是 www-data www-data,但我的預設 nginx 用戶是 nginx (如果我更改它,它甚至不會啟動。)我應該做一個
chown nginx:nginx /var/run/php/
?
答案1
要設定 php,您必須在系統上安裝 php-fpm 版本。並將此程式碼片段加入到server
區塊中的 nginx conf 中。
您必須變更php5-fpm
為系統上安裝的版本。
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
答案2
你缺少 PHP 解譯器,NGINX 有一篇文章在其關於 FPM 的 wiki 上。