nginx https -> http 301 return 으로 리다이렉트 하는 방법을 알려드립니다.
server {
listen 443 ssl;
server_name domain.example;
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/cert.key;
location / {
return 301 http://$host$request_uri;
}
location /secure/ {
try_files $uri =404;
}
}
server {
listen 80;
server_name domain.example;
location / {
try_files $uri =404;
}
location /secure/ {
return 301 https://$http_host$request_uri;
}
}
'알고보면 쓸데있는 신비한 잡학IT노트' 카테고리의 다른 글
chmod 폴더 또는 파일 권한 일괄 변경 (0) | 2021.01.04 |
---|---|
Alteon Layer 4 Switch Manual (0) | 2021.01.04 |
haproxy 권장 사양(스펙) (0) | 2021.01.01 |
fio cli 레퍼런스 공유 (0) | 2021.01.01 |
리눅스(CentOS) sysctl 에 대하여 // About Linux (CentOS) sysctl (0) | 2021.01.01 |