add SSL functionality to docker

This commit is contained in:
Roelof Rietbroek (@grace)
2018-04-23 15:54:17 +02:00
committed by Frédéric Guillot
parent 0b475c1850
commit 93846ee990
3 changed files with 15 additions and 2 deletions

View File

@@ -20,6 +20,9 @@ http {
server {
listen 80;
listen 443 ssl;
ssl_certificate /etc/nginx/ssl/kanboard.crt;
ssl_certificate_key /etc/nginx/ssl/kanboard.key;
server_name localhost;
index index.php;
root /var/www/app;