상세 컨텐츠

본문 제목

nginx 설치 및 간단한 SSL 구성 방법

nginx

by codeon 2024. 7. 19. 12:47

본문

반응형

nginx 설치 방법

 

우선 nginx 파일을 다운로드 받습니다.

 

https://nginx.org/en/download.html

 

nginx: download

 

nginx.org

 

윈도우 버전 다운로드

nginx/Windows-1.27.0
https://nginx.org/download/nginx-1.27.0.zip

 

nginx 간단한 SSL 적용 방법

nginx.conf 파일

 

global.pass 파일 생성

ssl 폴더 신규 생성 후 인증서 및 global.pass 파일 생성

 

인증서 제공 업체로 부터 받은 pem 인증서를 nginx 폴더 아래 ssl 폴더를 생성 후 인증서 복사

global.pass 파일 생성 후 파일 내용으로 암호 입력 후 저장

global.pass파일에 패스워드 입력 창

 

nginx.conf 파일 (ssl이 적용된 완전한 nginx.conf 파일)


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
	ssl_password_file C:/java/nginx-1.27.0/ssl/global.pass;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  code.who494.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    server {
        listen       443 ssl;
        server_name  code.who494.com;

        ssl_certificate      C:/java/nginx-1.27.0/ssl/cert.pem;
        ssl_certificate_key  C:/java/nginx-1.27.0/ssl/key.pem;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
		
		ssl_protocols	TLSv1.3 TLSv1.2;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }

}

 

변경 부분만 작성해 놓은 내용

http {
    include       mime.types;
    default_type  application/octet-stream;
	ssl_password_file C:/java/nginx-1.27.0/ssl/global.pass; // 개인키 생성시 암호 (제공 받은 암호)
   
    # HTTP server
    #  
   server {
        listen       80;
        server_name  code.who494.com;
        
    # HTTPS server
    #
    server {
        listen       443 ssl;
        server_name  code.who494.com; // 본인 도메인 정보 입력 

        ssl_certificate      C:/java/nginx-1.27.0/ssl/cert.pem; // 인증서
        ssl_certificate_key  C:/java/nginx-1.27.0/ssl/key.pem; // 개인키
        


# 위 내용만 추가해 주면 SSL 적용이 바로 됩니다 됩니다.

 

 

실행 방법

nginx.exe 파일 실행

 

C:\java\nginx-1.27.0>nginx.exe -h
nginx version: nginx/1.27.0
Usage: nginx [-?hvVtTq] [-s signal] [-p prefix]
             [-e filename] [-c filename] [-g directives]

Options:
  -?,-h         : this help
  -v            : show version and exit
  -V            : show version and configure options then exit
  -t            : test configuration and exit
  -T            : test configuration, dump it and exit
  -q            : suppress non-error messages during configuration testing
  -s signal     : send signal to a master process: stop, quit, reopen, reload
  -p prefix     : set prefix path (default: NONE)
  -e filename   : set error log file (default: logs/error.log)
  -c filename   : set configuration file (default: conf/nginx.conf)
  -g directives : set global directives out of configuration file
  
C:\java\nginx-1.27.0>nginx.exe

 

위 PEM 개인키 생성시 암호를 입력해 주면 됩니다

 

개인키 입력 후 엔터를 입력하면 브라우저로 SSL 인증서 적용 화면을 확인 할 수 있습니다. 개인키 암호 입력 창이 안나오는게 정상이나 나오는 경우 개인키 암호를 넣어주거나 다시한번 global.pass 파일 생성을 다시한번 해보시기 바랍니다.

 

SSL 적용 후 도메인으로 접속시 정상 화면

 

반응형