반응형
환경
80포트 설정과 443(SSL)포트 conf 파일을 따로 만들어놨다.
80 - default.conf
443 - default_ssl.conf
server {
listen 80;
server_name www.도메인명 도메인명;
root /웹경로
return 301 https://$server_name$request_uri; --> 해당줄 추가
access_log /var/log/httpd/도메인.access.log main;
error_log /var/log/httpd/도메인.error.log warn;
access_log syslog:server=unix:/dev/log,facility=local4,tag=nginx,severity=info main;
error_log syslog:server=unix:/dev/log,facility=local3,tag=nginx,severity=error;
include http.conf;
}
반응형
'Nginx' 카테고리의 다른 글
에러페이지 (404, 500, 502, 503, 504) 발생시 특정페이지로 보내기 (0) | 2019.11.27 |
---|---|
nginx 포트 proxy 설정 (0) | 2019.10.30 |
centos7 nginx 설치 (0) | 2019.10.22 |