Home  >  Article  >  Backend Development  >  nginx 不能访问软链接目录?

nginx 不能访问软链接目录?

WBOY
WBOYOriginal
2016-06-06 20:39:473185browse

访问的时候出现 403 Forbidden

ln -s /var/www/web /home/users/run/web

回复内容:

访问的时候出现 403 Forbidden

ln -s /var/www/web /home/users/run/web

当然可以,自己再排查下吧

应该是可以的,查查看是不是目录权限和文件路径的问题

1.在http里添加 disable_symlinks off;
2.修改目录权限:chmod -R 777 file
3.实在不行修改nginx.conf文件: user root 使用root用户运行nginx。

ps:我用parallels虚拟机运行centos,给共享本机的目录的文件夹做了一个软链接,总是403。最后修改nginx运行用户为root才访问成功,估计是共享目录只能用root或者另一个普通用户才能访问,nginx默认配置的user为nginx,没有权限访问。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn