2017-11-26 26 views
1

nginx에 문제가 있습니다. 하위 도메인을 추가 할 때까지 모든 것이 잘 작동했습니다. 이제는 브라우저에서 PHP 파일을 가져올 때마다 404 오류가 발생합니다. 하지만 가장 이상한 것은 내 메인 도메인에서 여전히 작동한다는 것입니다. nginx에는 오류 로그가없고 액세스 로그에는 404 HTTP 응답을 볼 수 있습니다. 아무도 대답이 없습니까?Nginx가 php cripts 및 하위 도메인에만 오류를 던지고

/etc/nginx/sites-available/domain.com이

server { 
    listen 80; 
    server_name domain.com *.domain.com; 

    access_log /var/www/domain.com/logs/nginx_access.log vhosts; 
    error_log /var/www/domain.com/logs/nginx_error.log; 

    location/{ 
     root /var/www/domain/www; 
     index index.php index.html index.htm; 
    } 
    error_page 500 501 502 503 504 /50x.html; 

    location = /50x.html { 
     root /var/www/nginx-default; 
    } 

    location ~ \.php$ { 
     try_files $uri =404; 
     fastcgi_pass unix:/run/php/php7.0-fpm.sock; 
     fastcgi_index index.php; 
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
     include fastcgi_params; 
     include snippets/fastcgi.conf; 
    } 
} 

server { 
    listen 443 ssl http2; 
    server_name domain.com *.domain.com; 

    access_log /var/www/domain.com/logs/nginx_access.log vhosts; 
    error_log /var/www/domain.com/logs/nginx_error.log; 

    root /var/www/domain.com/www; 

####### SSL Directives ####### 
    ssl on; 
    ssl_certificate /var/www/domain.com/config/ssl/fullchain.domain.com.pem; 
    ssl_certificate_key /var/www/domain.com/config/ssl/privkey.domain.com.pem; 
    ssl_session_timeout 5m; 
    ssl_protocols TLSv1.2 TLSv1.1 TLSv1; 
    ssl_ciphers ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA; 
    ssl_prefer_server_ciphers on; 

    location/{ 
     root /var/www/domain.com/www; 
     index index.php index.html index.htm; 
    } 

    location ~ \.php$ { 
     try_files $uri =404; 
     fastcgi_pass unix:/run/php/php7.0-fpm.sock; 
     fastcgi_index index.php; 
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
     include fastcgi_params; 
     include snippets/fastcgi.conf; 
     } 


    ### 
    # Rewrite rules 
    ### 

    ### 
    # Rewrite rule 1 : redirect www.domain.com to domain.com 
    ### 

    if ($host ~* ^www\.(.*)domain\.com$) { 
     rewrite ^(.*) //domain.com/$1 permanent; 
    } 
} 

server { 
    listen 443 ssl; 
    server_name sub.domain.com; 

    location/{ 
     root /var/www/domain.com/sub/www; 
     index index.php index.html index.htm; 
    } 

    ### 
    # SSL 
    ### 

    ssl on; 
     ssl_certificate /var/www/domain.com/config/ssl/fullchain.sub.domain.com.pem; 
     ssl_certificate_key /var/www/domain.com/config/ssl/privkey.sub.domain.com.pem; 
     ssl_session_timeout 5m; 
     ssl_protocols TLSv1.2 TLSv1.1 TLSv1; 
     ssl_ciphers ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES25$; 
     ssl_prefer_server_ciphers on; 

    location ~ \.php$ { 
       try_files $uri =404; 
     fastcgi_pass unix:/run/php/php7.0-fpm.sock; 
     fastcgi_index index.php; 
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
     include fastcgi_params; 
       include snippets/fastcgi.conf; 
     } 


    ### 
    # Logging 
    ### 

    access_log /var/www/domain.com/logs/nginx_access.log vhosts; 
    error_log /var/www/domain.com/logs/nginx_error.log; 

} 

server { 
    listen 80; 
    server_name sub.domain.com; 

    location/{ 
     root /var/www/domain.com/sub/www; 
     index index.php index.html index.htm; 
    } 

    location ~ \.php$ { 
     try_files $uri =404; 
     fastcgi_pass unix:/run/php/php7.0-fpm.sock; 
     fastcgi_index index.php; 
     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
     include fastcgi_params; 
       include snippets/fastcgi.conf; 
     } 


    ### 
    # Logging 
    ### 

    access_log /var/www/domain.com/logs/nginx_access.log vhosts; 
    error_log /var/www/domain.com/logs/nginx_error.log; 
} 

2017/11/26 15:44:37 [error] 25444#25444: *10 directory index of "/var/www/domain.com/sub/www/files/" is forbidden, client: 00.00.000.000, server: sub.domain.com, request: "GET /files/ HTTP/2.0", host: "sub.domain.com" 
2017/11/26 15:46:10 [error] 25444#25444: *14 open() "/var/www/domain.com/sub/www/this_file_does_not_exist.p" failed (2: No such file or directory), client: 00.00.000.000, server: sub.domain.com, request: "GET /this_file_does_not_exist.p HTTP/2.0", host: "sub.domain.com" 

정상적으로 작동하는 것 같다 오류 로그의 2 개 마지막 라인 : 그것은 반환 색인없이 폴더에 액세스하려고하면 403은 금지되고 존재하지 않는 파일을 가져 오려고하면 404가 표시됩니다. 하지만, 여기에 404 PHP 파일에 대해, 심지어 요청한 경우 지적이다. 주요 도메인에 access.log의

domain.com 00.00.000.000 - - [26/Nov/2017:15:45:32 +0100] "GET /index.php HTTP/2.0" 200 176 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36" 
sub.domain.com 00.00.000.000 - - [26/Nov/2017:15:45:42 +0100] "GET /index.php HTTP/2.0" 404 261 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36" 
sub.domain.com 00.00.000.000 - - [26/Nov/2017:15:46:10 +0100] "GET /this_file_does_not_exist.p HTTP/2.0" 404 260 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36" 
sub.domain.com 00.00.000.000 - - [26/Nov/2017:15:46:24 +0100] "GET /main_style.css HTTP/2.0" 200 2931 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36" 

마지막 라인은, PHP 파일은 200 응답이 브라우저에 표시됩니다. 하지만 하위 도메인에서 404 응답을 반환합니다 (여기에는없는 것처럼). 그러나 index.php는 main_style.css와 같은 폴더에 있고 main_style.css는 200 응답을 표시하고 표시됩니다.

정말 어떻게 작동해야할지 모르겠습니다. 누구든지 도움을받을 수 있다면 매우 환영받을 것입니다.

EDIT : hurl.it을 통해 https://sub.domain.com/을 얻으려고 할 때의 HTTP 응답입니다. enter image description here

추 신 : sub.domain.com은 (는) 내 도메인 이름이 아닙니다. 방금 Google에서 내 웹 사이트 위에있는이 게시물을 피하도록 변경했습니다.

답변

0

root 지시어가 누락되었습니다.

location /location ~ \.php$은 동일한 루트를 공유하므로 일반적으로 server 블록에 루트를 지정하고 두 위치가 동일한 값을 상속하도록 허용합니다. 예를 들어

:

server { 
    ... 
    root /var/www/domain.com/www; 

    location/{ 
     ... 
    } 
    location ~ \.php$ { 
     ... 
    } 
} 

은 이상 this document을 참조하십시오.