日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

deepin nginx连接php,利用docker运行nginx加上本机的php-fpm。访问html文件正常,但是访问php文件就报错404...

發布時間:2023/12/2 php 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 deepin nginx连接php,利用docker运行nginx加上本机的php-fpm。访问html文件正常,但是访问php文件就报错404... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

最近在虛擬機弄了一個deepin系統。打算使用docker加載nginx/1.17.6加在官方下載的PHP7.4.1(這個是本地編譯的)。

出現了以下的問題:

1)訪問html文件正常,但是訪問php文件報404。

根據網上的文章嘗試:

1)php運行不成功。在PHP的cli模式下是正常的。

2)php進程用戶沒有權限訪問目錄,修改成777權限還是404

目前懷疑是配置文件的問題,但無法定位問題所在,下面貼上配置文件信息,請問問題出在哪里?

server {

listen 80;

server_name localhost;

#charset koi8-r;

access_log /var/log/nginx/host.access.log main;

error_log /var/log/nginx/error.log;

location / {

root /usr/share/nginx/html;

index index.html index.htm index.php;

}

#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 /usr/share/nginx/html;

}

# 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$ {

root html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

#fastcgi_param SCRIPT_FILENAME /home/vincenzo/application/php/$fastcgi_script_name;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

include fastcgi_params;

}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

# deny all;

#}

}

總結

以上是生活随笔為你收集整理的deepin nginx连接php,利用docker运行nginx加上本机的php-fpm。访问html文件正常,但是访问php文件就报错404...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。