nginx 접근 403

3790 단어 nginx
오늘 새로운 환경 에 nginx 를 설치 한 결과 방문 한 것 은 모두 403 이 었 고 오 랜 시간 이 걸 렸 으 며 우여곡절 끝 에 해결 되 었 습 니 다.여기에 표시 해 주세요.
브 라 우 저 에 403 이 index. html 에 대한 읽 기 권한 이 없다 는 것 을 알 았 기 때문에 nginx 권한 문 제 를 해결 하 는 첫 번 째 방안 은 개방 권한 입 니 다.접근 할 대상 폴 더 권한 을 nginx 사용자 가 읽 을 수 있 도록 변경 할 수 있 습 니 다.
// -R                       755
chmod -R 755           

폴 더 권한 을 설정 하면 되 는 줄 알 았 습 니 다. 접근 할 때 403 입 니 다. 디 렉 터 리 를 잘못 쓴 것 이 아 닙 니까? pwd 후 디 렉 터 리 를 복사 하여 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 koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /home/ftpuser/www;
            #root   html;
            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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
                                         
                                               

문제 없어. 
우여곡절 끝 에 첫 줄 을 수정 하 다.
user root;

재 방문 성공!
nginx 명령 열기: ./usr/local/nginx
nginx 명령 닫 기     ./usr/local/nginx -s stop
nginx 명령 다시 시작: ./usr/local/nginx/sbin/ngninx -s reload

좋은 웹페이지 즐겨찾기