• This project
    • Loading...
  • Sign in

강동현 / nodejs-game

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • nodejs-game
  • web
  • default.conf
  • 강동현's avatar
    인증서 파일을 환경변수를 사용하도록 변경 · c0693d20
    c0693d20
    강동현 authored 2021-06-11 00:06:53 +0900
default.conf 328 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
server {
    listen 80;
    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl default_server;
    server_name $HOST;

    ssl_certificate $SSL_CA;
    ssl_certificate_key $SSL_KEY;

    location / {
        root    /usr/web/build;
        index   index.html;
        try_files $uri $uri/ /index.html;
    }
}