1. {도메인}/robots.txt 및 googleXX.html 처럼 특정 위치에서 실행 되도록 별도 지정 설정이 필요시 아래처럼 "location =/ {" 또는 "location / {" 보다 위에 적용 한다. 그래야 먼저 처리가 가능한 것으로 확인 됨.
server {
...........중략
location = /robots.txt {
alias /data/robot_conf/robots.txt;
}
location = /google0......18b3kkk.html {
alias /data/robot_conf/google0......18b3kkk.html.html;
}
location =/ {
proxy_pass http://xxx;
}
'Server > linux' 카테고리의 다른 글
[nginx ssl 설정] nginx ssl 설정 및 경고 메세지 처리 (0) | 2022.12.27 |
---|---|
[Linux 사용자 관리 명령] useradd, usermod 및 userdel 명령 (0) | 2022.12.27 |
[TLS버전확인] openssl s_client 명령어로 ssl 및 tls 체크 (0) | 2022.12.26 |
[리눅스명령어] 사용자 목록확인 (How to List Users in Linux) (0) | 2022.08.25 |