系统相关
首页 > 系统相关> > nginx 报 403错误的一些解决办法

nginx 报 403错误的一些解决办法

作者:互联网

一、指向静态文件,报403错误

有人说要改nginx.conf里的user root,这是很不好的,其实很多情况都是selinux打开了,对文件读写有额外控制,实在懒得弄可以关掉selinux。最好还是需要设置一下才行,具体原理我了解不深,以后有时间再慢慢研究吧。

chcon -t usr_t xxxxx

setsebool -P httpd_can_network_connect 1
chcon -R -t httpd_sys_content_t /seafile/seafile-server-latest/seahub
chcon -R -t httpd_sys_content_t /seafile/seahub-data
chcon -R -t httpd_sys_content_t /seafile/seafile-server-latest

标签:httpd,解决办法,selinux,content,nginx,403,sys,seafile
来源: https://www.cnblogs.com/myjhaha/p/13062759.html