drupal install.php를 시작하려고 할 때 Nginx 파일 404

drupal install.php를 시작하려고 할 때 Nginx 파일 404

nginx에서 drupal의 install.php에 액세스하려고 하면 404 오류가 발생합니다. 다음은 내 /etc/nginx/nginx.conf 및 /etc/nginx/conf.d/default.conf 파일입니다. nginx 사용자 및 그룹은 /var/www/html 폴더를 소유합니다.

/etc/nginx/nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

pid        /run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    gzip  on;

    index   index.html index.htm;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;
}

conf.d/default.conf

server {
 listen 80;
 server_name 10.1.70.221;
 root /var/www/html;
 try_files $uri $uri/ /index.php?$args;
 index index.php index.html;
 #charset koi8-r;
 #access_log /var/log/nginx/log/host.access.log main;
 # 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$ {
 try_files $uri =404;
 fastcgi_split_path_info ^(.+\.php)(/.+)$;
 fastcgi_pass 127.0.0.1:9000;
 fastcgi_index index.php;
 fastcgi_param SCRIPT_FILENAME $document_root$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;
 #}
 }

답변1

이것은 결국 selinux가 되었습니다. 비활성화로 설정했는데 더 이상 404 오류가 발생하지 않습니다.

관련 정보