From 93846ee99033084290e885b59b048635916955e5 Mon Sep 17 00:00:00 2001 From: "Roelof Rietbroek (@grace)" Date: Mon, 23 Apr 2018 15:54:17 +0200 Subject: add SSL functionality to docker --- docker/etc/nginx/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docker/etc') diff --git a/docker/etc/nginx/nginx.conf b/docker/etc/nginx/nginx.conf index 6ba545f6..5ffbba0a 100644 --- a/docker/etc/nginx/nginx.conf +++ b/docker/etc/nginx/nginx.conf @@ -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; -- cgit v1.2.3