Transmission SSL 접근 추가

1449 단어
0. 준비 작업
0.1, App 에서 센터 에 Entware - ng 설치
0.2 관리자 로 SSH 를 NAS 에 로그 인
0.3 、 SSL 인증 서 를 신청 하면 무료 로 신청 할 수 있 습 니 다.
0.4. 공공 네트워크 IP 와 도 메 인 이름, 이것 은 SSL 과 결합 해 야 합 니 다.
1. 먼저 Entware - ng 을 통 해 nginx 를 설치 합 니 다.
opkg update

opkg upgrage

opkg install nginx

2. 설정 수정
ngix 설정 파일 은 / opt / etc / nginx / nginx. conf 에 있 습 니 다.
#      
cp /opt/etc/nginx/nginx.conf /opt/etc/nginx/nginx.conf.bak

#     
vi /opt/etc/nginx/nginx.conf

주로 SSL 의 역방향 프 록 시 설정 을 추가 합 니 다.
#       
 user nobody   user root

#   HTTPS server ,      
server {
    listen 8091 ssl;
    server_name  localhost;
    
    ssl_certificate     /opt/etc/cert/ssl.crt;
    ssl_certificate_key /opt/etc/cert/ssl.key;    

    location / {
        proxy_pass        http://localhost:9091;
    }    
}

#   :
# 1、   8091      https  , :https://mycloud.com:8091 
# 2、             

3. nginx 서비스 재 개
#       ,       admin     
sudo ../init.d/S80nginx stop
sudo ../init.d/S80nginx start

"Nginx started." 가 성공 적 으로 시 작 된 것 을 보 았 을 때 브 라 우 저 에 입력 하 십시오.https://mycloud.com:8091방문 해 보 세 요.
 
다음으로 전송:https://www.cnblogs.com/junier/p/8574021.html

좋은 웹페이지 즐겨찾기