summaryrefslogtreecommitdiff
path: root/docker/etc/nginx
diff options
context:
space:
mode:
Diffstat (limited to 'docker/etc/nginx')
-rw-r--r--docker/etc/nginx/nginx.conf3
1 files changed, 3 insertions, 0 deletions
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;