国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

nginx 配置 默認網站根目錄(權限問題導致403 Forbidden錯誤的解決方法)

AWang / 1975人閱讀

摘要:在安裝服務器后,我想把網站的根目錄設置為,于是對的文件進行配置先打開設置的地方保存后,重啟服務,然后出現了錯誤網上查詢后說是權限問題,更改的第一行將改為保存,再次重啟服務,訪問成功如果不想使用用戶運行,就不能把目錄放在目錄下了,可以選

在安裝 nginx 服務器后,我想把網站的根目錄設置為 /root/www/ ,于是對 nginxnginx.conf 文件進行配置

先打開 nginx.conf

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    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;
    
        charset utf-8;
    
        #access_log  logs/host.access.log  main;
    
        location / {
            root   /root/www/;          ## 設置的地方
            index  index.html index.htm;
        }
                #error_page  404              /404.html;
    
            # redirect server error pages to the static page /50x.html
            #
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    
            # proxy the PHP scripts to Apache listening on 127.0.0.1:80
            #
            #location ~ .php$ {
            #    proxy_pass   http://127.0.0.1;
            #}
    
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            #location ~ .php$ {
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;
            #    fastcgi_index  index.php;
            #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            #    include        fastcgi_params;
            #}
    
            # deny access to .htaccess files, if Apache"s document root
            # concurs with nginx"s one
            #
            #location ~ /.ht {
            #    deny  all;
            #}
        }
}

保存后,重啟 nginx 服務,然后出現了 403 錯誤

網上查詢后說是權限問題,更改 nginx.conf 的第一行
#user nobody; 改為 user root;

保存,再次重啟 nginx 服務,訪問成功

如果不想使用root用戶運行,就不能把目錄放在 /root/ 目錄下了,可以選擇放在 /home/www 下,并設置 www 的權限 777,同樣可以訪問成功。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/39355.html

相關文章

  • 跨域解決方案(史上最易懂)

    摘要:跨域總結跨域思路跨域解決方案一般分為兩種前端解決,后端解決前端解決方案通過前端解決的思想就是,通過設置中間件把跨域的請求轉發一下,其實就是反向代理,比如想要訪問豆瓣的接口很會有跨域問題,但是如果請求的是就不存在跨域反向代理就是截取之后的請求 跨域總結 1.跨域思路 跨域解決方案一般分為兩種:前端解決,后端解決 1.1 前端解決方案 通過前端解決的思想就是,通過設置中間件把跨域的請求轉發...

    wh469012917 評論0 收藏0
  • nginx靜態資源文件無法訪問,403 forbidden錯誤

    摘要:今天在搭建環境時出現一個奇怪問題,配置的靜態資源目錄下面文件無法訪問,瀏覽器訪問出現,環境是圖片是通過后臺程序上傳到服務器的,檢查之后發現是程序創建的文件夾沒有訪問權限導致的圖片無法訪問。解決方法是在配置文件頭部加打開配置文件修改 今天在搭建nginx環境時出現一個奇怪問題,配置的靜態資源目錄下面文件無法訪問,瀏覽器訪問出現403 forbidden,環境是centos6.8 + ng...

    Benedict Evans 評論0 收藏0
  • linux部署Nginx以及簡易圖片服務器搭建

    摘要:與主要區別在于如何解釋后面的,這會使兩者分別以不同的方式將請求映射到服務器文件上。實例如果一個請求的是時,服務器將會返回服務器上的的文件。 Linux 部署nginx 環境: 百度云實例 CentOS / 7.5 x86_64 (64bit) 安裝依賴 yum install gcc yum install pcre-devel yum install zlib zlib-dev...

    soasme 評論0 收藏0
  • 跨域解決方案(易懂,持續更新中……)

    摘要:跨域總結跨域思路跨域解決方案一般分為兩種前端解決,后端解決前端解決方案通過前端解決的思想就是,通過設置中間件把跨域的請求轉發一下,其實就是反向代理,比如想要訪問豆瓣的接口很,但是如果請求的是就不存在跨域反向代理就是截取之后重寫請求將請求轉發 跨域總結 1.跨域思路 跨域解決方案一般分為兩種:前端解決,后端解決 1.1 前端解決方案 通過前端解決的思想就是,通過設置中間件把跨域的請求轉發...

    wupengyu 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<