Nginx - 액세스 거부 문제 조사
944 단어 Nginx
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. 파일 권한 의 문제 일 수도 있 습 니 다. 읽 기 권한 이 없습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.