nginx 프로필 에 user 는 루트 일 수 있 습 니 다. 그렇지 않 으 면 403 오 류 를 보고 합 니 다.

2916 단어 nginx
yum 의 새로운 nginx 버 전 은 1.12.2 입 니 다.
 
직접 시작, 브 라 우 저 는 localhost 가 방문 한 nginx 페이지 를 입력 합 니 다.
 
1. nginx. conf 설정 파일 의 루트 경 로 를 / root / html / index. html 로 변경 할 때
 
#mkdir /root/html
#echo hello > /root/html/index.html
(디 렉 터 리 에 접근 할 수 있 는 권한 을 바 꿀 필요 가 없습니다. 원본 성공 한 / usr / share / nginx / html / index. html 의 경로 권한 을 대조 할 수 없습니다)
오류 보고:
root@localhost nginx]# curl localhost

403 Forbidden

403 Forbidden


nginx/1.12.2

오류 로그 보기:
[root@localhost nginx]# tail -n30 error.log 
2018/01/30 01:35:57 [error] 3511#0: *1 "/root/html/index.html" is forbidden (13: Permission denied), client: ::1, server: _, request: "GET / HTTP/1.1", host: "localhost"
2018/01/30 01:36:50 [error] 3567#0: *1 "/root/html/index.html" is forbidden (13: Permission denied), client: ::1, server: _, request: "GET / HTTP/1.1", host: "localhost"
2018/01/30 01:37:20 [error] 3640#0: *1 "/root/html/index.html" is forbidden (13: Permission denied), client: ::1, server: _, request: "GET / HTTP/1.1", host: "localhost"
2018/01/30 01:38:40 [error] 3640#0: *2 "/root/html/index.html" is forbidden (13: Permission denied), client: ::1, server: _, request: "GET / HTTP/1.1", host: "localhost"
2018/01/30 01:40:27 [error] 3878#0: *2 open() "/usr/share/nginx/html/favicon.ico" failed (2: No such file or directory), client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", host: "localhost"
2018/01/30 01:40:27 [error] 3878#0: *2 open() "/usr/share/nginx/html/favicon.ico" failed (2: No such file or directory), client: ::1, server: _, request: "GET /favicon.ico HTTP/1.1", host: "localhost"
2018/01/30 01:50:58 [error] 4590#0: *1 "/root/html/index.html" is forbidden (13: Permission denied), client: ::1, server: _, request: "GET / HTTP/1.1", host: "localhost"

 
 
2. 다시 고치 고 nginx. conf 의 user nginx 를
user root;
성공:
[root@localhost ~]# curl localhost
hello

3. 안 됩 니 다. user 를 root 로 바 꾸 지 않 겠 습 니 다.
user nginx;
 
재 개 후 403 의 오 류 를 보고 합 니 다.
 
 
참고 해답:https://stackoverflow.com/questions/31729212/nginx-root-index-html-forbidden-13-permission-denied
 
4 、 접근 디 렉 터 리 를 루트 로 변경
      나 는 / data / html / index. html 로 바 꾸 었 다.
 okokokoko
 
 
요약: 사용자 와 방문 경로 가 일치 하지 않 습 니 다.
루트 사용자 지정
다른 사용자 (nginx, ww) --- > 접근 경 로 는 / root 에서 사용 할 수 없습니다.
 
 
ps: nginx 의 일부 설정 웹 접근 설정 은 왜 메 인 프로필 에 만 적 혀 있 습 니까? 확장 프로필 과 메 인 프로필 은 어떤 차이 가 있 습 니까?
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

좋은 웹페이지 즐겨찾기