summaryrefslogtreecommitdiff
path: root/docker/nginx/default.conf.template
diff options
context:
space:
mode:
Diffstat (limited to 'docker/nginx/default.conf.template')
-rw-r--r--docker/nginx/default.conf.template5
1 files changed, 4 insertions, 1 deletions
diff --git a/docker/nginx/default.conf.template b/docker/nginx/default.conf.template
index c82c019..de2dc82 100644
--- a/docker/nginx/default.conf.template
+++ b/docker/nginx/default.conf.template
@@ -1,5 +1,8 @@
server {
- listen 0.0.0.0:80;
+ listen 0.0.0.0:80 ssl;
+
+ ssl_certificate /etc/nginx/certs/self-signed.crt;
+ ssl_certificate_key /etc/nginx/certs/self-signed.key;
root /var/www/html/public;
index index.php;