我在Linux系统方面缺乏经验,现在正在尝试配置Nginx + Nodejs服务器。首先尝试使其工作并配置fast-cgi php for phpMyAdmin。当我使用默认" / usr / share / nginx / html"目录。一切都运行正常,但是当我将根目录更改为" / home / ftpuser / web / public"时,我得到了#34;没有指定输入文件"浏览器中的错误。我的测试页面是一个简单的HTML ...
我的nginx配置文件如下:
@PathVariable("datainicio") @DateTimeFormat(pattern = "ddMMyyyy") Date dataInicio
我不知道出了什么问题。我只是猜测也许这是一个许可问题?有谁知道这是什么问题?
更新:
基于nginx error.log,这是一个很好的权限问题:
server {
listen 80 default_server;
server_name _;
#root /home/ftpuser/web/public;
root /usr/share/nginx/html;
index index.html index.htm index.php;
location / {
try_files maintenance.html $uri $uri/index.html $uri/index.php;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location @node {
error_page 405 = @backend;
add_header X-Cache "HIT from Backend";
proxy_pass http://212.24.106.170:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
#proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
我做了以下事情:
[crit] 32338#0: *1 stat() "/home/ftpuser/badgirlz/public//index.html" failed (13: Permission denied), client: 78.92.44.152, server: _, request: "GET / HTTP/1.1", host: "domain.com"
然而,问题仍未解决......
答案 0 :(得分:0)
查看您的日志:
[暴犯] 32338#0:* 1 stat()" /home/ftpuser/badgirlz/public//index.html"失败(13:许可被拒绝),
和
chown -R nginx:nginx / home / ftpuser / web / public chmod -R 755 / home / ftpuser / web / public
您认为我更改了错误文件夹的权限。 尝试:
chown -R nginx:nginx /home/ftpuser/
chmod -R 755 /home/ftpuser/
请查看here以获取有关Linux上文件权限的更多信息,它可能会对您有所帮助。