directory index of "/usr/share/nginx/html/" is forbidden
directory index of "/usr/share/nginx/html/" is forbidden
1. / usr / share / nginx / html 아래
index.php,index.html
가 없 을 때 도 메 인 이름 을 직접 방문 하여 파일 을 찾 지 못 하면 403 forbidden 에 보고 합 니 다.해결 방법: 다음 명령 을 직접 입력 하 십시오:
# index.html
rm /usr/share/nginx/html/index.html
# html index.php , `<?php phpinfo(); ?>` phpinfo
echo "<?php phpinfo(); ?>" >> /usr/share/nginx/html/index.php
2. 또 하나의 이 유 는 기본 nginx 프로필 의 location 에 루트 경 로 를 지정 하지 않 았 기 때 문 입 니 다. 제 가 바로 이 문제 입 니 다.
이것 은 기본 server 에 직접 추가 합 니 다.
location / {
root html;
index index.php index.html index.htm;
}
3. 정상적으로 접근 할 수 없다 면 nginx 의 기본 설정 파일 에 들 어가 다음 코드 가 있 는 지 확인 하 십시오.
location ~* \.php$ {
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
php php-fpm ,php-fpm 9000。
설정 이 끝 난 후에 nginx 를 다시 시작 하거나 reload 를 하 십시오:
다시 시작 nginx:
nginx -s stop
nginx
또는:
nginx -s reopen
다음은 nginx 설정 파일 을 다시 불 러 오 는 것 입 니 다 (이런 방식 을 추천 합 니 다).
service nginx reload
nginx 의 설치 디 렉 터 리 찾기:
[root@localhost nginx]# which nginx
/usr/sbin/nginx # yum
nginx 명령 알림 보기:
[root@localhost nginx]# nginx -h
nginx version: nginx/1.10.2
Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -T : test configuration, dump it and exit -q : suppress non-error messages during configuration testing -s signal : send signal to a master process: stop, quit, reopen, reload -p prefix : set prefix path (default: /usr/share/nginx/) -c filename : set configuration file (default: /etc/nginx/nginx.conf) -g directives : set global directives out of configuration file
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다른 사람의 웹사이트 편집: contenteditable 및 designMode그래도 우리가 그렇게 할 수 있다고 생각하는 것은 멋진 일입니다. 제가 강조하고 싶었던 일종의 관련 API가 실제로 몇 개 있기 때문에 오늘 그것을 가져왔습니다. contenteditable는 "true" 값이 할당...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.