nginx 를 컴 파일 하고 ssl 암호 화 된 프 록 시 서 비 스 를 설정 합 니 다.

1526 단어 Web-Service
nginx 를 컴 파일 하고 ssl 암호 화 된 프 록 시 서 비 스 를 설정 합 니 다.
전기 준비
컴 파일 에 필요 한 gcc 와 gcc - c + 설치
yum install -y gcc gcc-c++

nginx 설치 pcre - devel, openssl - devel, zlib - devel 의존
yum install -y pcre pcre-devel openssl openssl-devel zlib zlib-devel

원본 패키지 준비 및 압축 풀기: openssl - 1.0.2o. tar. gz
tar -zxvf openssl-1.0.2o.tar.gz

pcre-8.41.tar.gz
tar -zxvf pcre-8.41.tar.gz

nginx-1.12.2.tar.gz
tar -zxvf nginx-1.12.2.tar.gz

설치 의존 도 및 nginx
cd ~/nginx-1.12.2/
./configure --prefix=~/app/nginx --with-pcre=~/pcre-8.41 --with-
http_stub_status_module --with-http_ssl_module --with-openssl=~/openssl-1.0.2o
make && make install

키 파일 생 성
openssl gensa -out ca.key 2048
openssl genrsa -out ca.key 2048
openssl req -new -key ca.key -out ca.csr
openssl x509 -req -days 3650 -in ca.csr -signkey ca.key -out ca.crt

설정 에이전트
    server {
        listen       8080 ssl;
        server_name  localhost;
        ssl_certificate ~/ca.crt;
        ssl_certificate_key ~/ca.key;
        ssl_session_timeout 60m;
        access_log  logs/10119032.access.log;
        location / {
            proxy_pass http://ip:port/;
            proxy_redirect default ;
        }
    }

레 퍼 런 스
  • https://hostpresto.com/community/tutorials/how-to-install-the-apache-web-server-with-ssl-support-on-centos-7/
  • 좋은 웹페이지 즐겨찾기