Skip to content

Commit

Permalink
https-nginx: Correct tls.[crt|key] mount (#217)
Browse files Browse the repository at this point in the history
Fixes #194.
  • Loading branch information
ahmetb authored Mar 20, 2018
1 parent 188c3d9 commit cca6ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions staging/https-nginx/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ server {
index index.html;

server_name localhost;
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
ssl_certificate /etc/nginx/ssl/tls.crt;
ssl_certificate_key /etc/nginx/ssl/tls.key;

location / {
try_files $uri $uri/ =404;
Expand Down

0 comments on commit cca6ae3

Please sign in to comment.