Nginx - 액세스 거부 문제 조사

944 단어 Nginx
In your php-fpm www.conf set  security.limit_extensions  to  .php  or  .php5  or whatever suits your environment. For some users, completely removing all values or setting it to  FALSE  was the only way to get it working.
In your nginx config file set  fastcgi_pass  to your socket address (e.g.  unix:/var/run/php-fpm/php-fpm.sock; ) instead of your server address and port.
Check your  SCRIPT_FILENAME  fastcgi param and set it according to the location of your files.
In your nginx config file include  fastcgi_split_path_info ^(.+\.php)(/.+)$;  in the location block where all the other fastcgi params are defined.
In your php.ini set  cgi.fix_pathinfo  to  1
출처: Nginx + PHP - FPM 이 포 함 된 PHP 파일 에 대한 액세스 거부 (403)
보충:
6. 파일 권한 의 문제 일 수도 있 습 니 다. 읽 기 권한 이 없습니다.

좋은 웹페이지 즐겨찾기