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...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 安卓bt下载器 知乎(安卓 bt)
- 下一篇: php 静态方法 call,php的 _