nginx 配置哪里出错了 ?
- 0次
- 2021-05-19 17:17:38
- idczone
整了台机子,搭建 NAS,其中 nextcloud 卡在 lnmp 的配置上
centos 8 全套 dnf 安装
输入 ip,页面就是 File not found.
参考了搜索结果,感觉没问题啊
#定义 Nginx 运行的用户和用户组
user nginx nginx;
抗投诉服务器#nginx 进程数,建议设置为等于 CPU 总核心数
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
# 进程 Pid 文件
#pid /var/run/nginx/nginx.pid;
events {
use epoll;
worker_connections 1024;
}
http {
include mime.types;
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 logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
root /var/www/nextcloud;
index index.html index.htm;
charset utf-8;
#access_log logs/host.access.log main;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass unix:/run/php-fpm/www.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
这两行改成这样试试,记得重启 Nginx。
listen 80 default_server;
server_name _;
还是不行....
你没有把 index.php 加进 index 里,,,,,,
root
路径后面加个斜杠看看。☺
index index.html index.htm 改成
index index.html index.htm index.php
没什么特殊要求的话,Web 服务器建议用 caddy,省时省力配置简单明了。
你监听的是 sock 文件 你的备注写的是监听 9000 端口,你 php-fpm 有没有设置对
你的 fpm 提交确实有问题,一般安装目录都是带版本号的,你这个应该是直接把代码贴过来的吧。另外不成功可以尝试把 Documentroot 写死。可以开 f12 看一下返回头里是否有 xphp 解析信息
另外问一下 nextcloud 是开原的 nas 系统吗?买群晖和自建方案比起来哪个合适?
nextcloud 可以直接用 docker 跑起来。不用折腾
配置一下伪静态
https://docs.nextcloud.com/server/stable/admin_manual/installation/nginx.html/>注意你安装的版本,文档左下角可以看
文件夹 /结尾
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
$document_root 直接引用 root 值
/var/www/nextcloudindex.php
/var/www/nextcloud/index.php
fpm 的路径是默认配置 ls /var/run/php-fpm 结果: php-fpm.pid 和 www.sock
nextcloud 是开源的,但不是 nas 系统:一个私有网盘套件
惭愧不会 docker
不要在意注释,那个是没修改的
试过,一样的结果
检查下 php-fpm 的 sock 路径与你 nginx 里写的是不是一致
https://www.digitalocean.com/community/tools/nginx
用这个生成吧,或者照着一行行改
看日志啊
对啊,为什么不先看下错误日志呢?
nextcloud 太大了。。。用了半年换成了 caddy