配置Nginx,而後生成一鍵生成靜態頁面,而後就沒有而後了,全部欄目頁面都顯示nginx 403 forbidden。php
通常來講nginx 的 403 Forbidden errors 表示你在請求一個資源文件可是nginx不容許你查看。
403 Forbidden 只是一個HTTP狀態碼,像404,200同樣不是技術上的錯誤。
哪些場景須要返回403狀態碼的場景?
1.網站禁止特定的用戶訪問全部內容,例:網站屏蔽某個ip訪問。
2.訪問禁止目錄瀏覽的目錄,例:設置autoindex off後訪問目錄。
3.用戶訪問只能被內網訪問的文件。
以上幾種常見的須要返回 403 Forbidden 的場景html
命令:linux
ps aux | grep "nginx: worker process" | awk '{print $1}'
[root@localhost hc]# ps aux | grep "nginx: worker process" | awk '{print $1}' nginx root
發現是nginx,而不是用root啓動的nginx
將nginx.conf文件中的 user 對應的nginx 改成 root ,改完後重啓web
[root@localhost hc]# vim /etc/nginx/nginx.conf [root@localhost hc]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@localhost hc]# nginx -s reload
server { listen 80; server_name localhost; index index.php index.html; root / var/www; }
若是在/ var/www下面沒有index.php,index.html的時候,直接訪問域名,找不到文件,會報403 forbidden。vim
解決辦法:修改web目錄的讀寫權限,或者是把nginx的啓動用戶改爲目錄的所屬用戶,重啓Nginx便可解決centos
chmod -R 755 / var/www
首先查看本機SELinux的開啓狀態,若是SELinux status參數爲enabled即爲開啓狀態bash
/usr/sbin/ sestatus -v
或者使用getenforce命令檢查網站
如何關閉 SELinux 呢server
setenforce 0
修改配置文件 /etc/selinux/config,將SELINUX=enforcing改成SELINUX=disabled
vi /etc/selinux/config #SELINUX=enforcing SELINUX=disabled
重啓生效。