第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

nginx 工作正常,但 php7.2-fpm 工作不正常

nginx 工作正常,但 php7.2-fpm 工作不正常

PHP
當(dāng)年話下 2023-09-22 16:38:17
我正在嘗試在 ubuntu 18.04 上使用 nginx 運(yùn)行 php7.2-fpm 來運(yùn)行 Wordpress。Nginx 工作正常,但 php 無法工作。日志檔案:2020/08/10 11:06:34 [error] 107906#107906: *1 open() "/usr/share/nginx/htmlunix:/run/php/php7.2-fpm.sock" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"2020/08/10 11:09:57 [error] 108481#108481: *1 open() "/usr/share/nginx/html404" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"2020/08/10 11:20:13 [error] 109596#109596: *1 open() "/usr/share/nginx/html404" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"2020/08/10 11:22:35 [error] 110539#110539: *1 open() "/usr/share/nginx/html404" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"2020/08/10 11:22:36 [error] 110539#110539: *2 open() "/usr/share/nginx/html404" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"2020/08/10 11:26:10 [error] 110817#110817: *1 open() "/usr/share/nginx/html404" failed (2: No such file or directory), client: ###.###.###.###, server: example.com, request: "GET /index.php HTTP/1.1", host: "example.com"抱歉我的英語很短。
查看完整描述

1 回答

?
慕少森

TA貢獻(xiàn)2019條經(jīng)驗(yàn) 獲得超9個(gè)贊

您的配置文件配置錯(cuò)誤nginx。


首先,您在節(jié)內(nèi)指定root和index指令location \。


location / {

? ? ? ? root? /data/web;

? ? ? ? index index.html index.htm;

}

該部分僅在所有其他部分不匹配時(shí)才起作用,因?yàn)樗哂卸搪费诖a長度(/是一個(gè)符號)


每個(gè)URL以.php、 likephpinfo.php或結(jié)尾的都index.php將匹配到location ~ \.php$部分:


location ~ \.php$ {

? ? ? ? try_files? ? ? ? ? ? $uri = 404;

? ? ? ? fastcgi_pass? ? ? ? ?unix:/run/php/php7.2-fpm.sock;

? ? ? ? fastcgi_index? ? ? ? index.php;

? ? ? ? include? ? ? ? ? ? ? fastcgi_params;

? ? ? ? fastcgi_read_timeout 300;

}

但是 - 沒有rootandindex指令(順便說一句,index這是可選的,但在您的情況下,first 是強(qiáng)制性的)。


有兩種解決方案:


首先,在部分中指定root和index指令location ~ \.php$:


location ~ \.php$ {

? ? ? ? try_files? ? ? ? ? ? $uri = 404;

? ? ? ? root? ? ? ? ? ? ? ? ?/data/web;

? ? ? ? index? ? ? ? ? ? ? ? index.php index.html index.htm;

? ? ? ? fastcgi_pass? ? ? ? ?unix:/run/php/php7.2-fpm.sock;

? ? ? ? fastcgi_param? ? ? ? SCRIPT_FILENAME $document_root/$fastcgi_script_name;

? ? ? ? fastcgi_index? ? ? ? index.php;

? ? ? ? include? ? ? ? ? ? ? fastcgi_params;

? ? ? ? fastcgi_read_timeout 300;

}

第二個(gè)是將rootand放在index全局上下文中(在 內(nèi)部server):


server {


? ? listen 80;

? ? charset UTF-8;

? ? server_name example.com www.example.com;

? ? root? /data/web;

? ? index index.php index.html index.htm;


? ? ...


}


UPD:還fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;必須在之后添加指令fastcgi_pass


查看完整回答
反對 回復(fù) 2023-09-22
  • 1 回答
  • 0 關(guān)注
  • 135 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號