NGINX https Redirect 방법
아파치에서는 아래처럼 .htaccess 에서 80 포트로 오면 443 으로 리디렉션을 시켜줄 수가 있습니다.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
이것을 nginx 에서 설정하는 방법입니다.
server {
listen 80;
server_name www.example.com;
root /var/www/html;
location / {
index index.html index.htm index.php;
return 301 https:$host$request_uri;
}
}
이제 엔진엑스를 재시작하고 확인하면 됩니다.
'LINUX' 카테고리의 다른 글
아파치 BLEXBot 차단하기 (0) | 2017.06.26 |
---|---|
NGINX phpMyAdmin 연결 (0) | 2017.06.26 |
NGINX 확장자 html 에서도 php 동작되도록 (0) | 2017.06.23 |
CentOS 원격백업 rsnapshot (0) | 2017.06.22 |
ssh-copy-id 에러시 키 복사 방법 (0) | 2017.06.22 |