CentOS 8.0 nginx ssl 접근
[root@localhost ~]# dnf install nginx -y
nginx 홈 디 렉 터 리 로 전환
[root@localhost ~]# cd /etc/nginx/
ssl 키 생 성
[root@localhost ~]# openssl req -new -newkey rsa:4096 -nodes -keyout server.key -out server.csr
자체 서명 인증서 생산
[root@localhost ~]# openssl req -newkey rsa:4096 -nodes -keyout server.key -x509 -days 365 -out server.crt
백업 nginx. conf
[root@localhost ~]# cp -p nginx.conf nginx.conf.bak
nginx. conf 설정
[root@localhost ~]# vim nginx.conf
#
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name www.jnds.com; ( )
root /usr/share/nginx/html; ( )
ssl_certificate "/etc/nginx/server.crt"; ( )
ssl_certificate_key "/etc/nginx/server.key"; ( )
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 10m;
ssl_ciphers PROFILE=SYSTEM;
ssl_prefer_server_ciphers on;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
서비스 다시 시작
[root@localhost ~]# systemctl restart nginx
방화벽 을 닫다
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
바이너리 파일cat 또는tail, 터미널 디코딩 시 처리 방법cat으로 바이너리 파일을 보려고 할 때 코드가 엉망이 되어 식은땀이 났다. 웹에서 스크롤된 정보의 처리 방법과alias의 설정을 요약합니다. reset 명령을 사용하여 터미널을 재설정합니다.이렇게 하면 고치지 못하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.