From 2f76a465000d288c06161aaa6c5b16ffb5bb9d3b Mon Sep 17 00:00:00 2001 From: virusdefender Date: Sat, 16 Dec 2017 01:53:59 +0800 Subject: [PATCH] add ssl helper --- deploy/nginx/locations.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy/nginx/locations.conf b/deploy/nginx/locations.conf index 8d26d084..1732c7e7 100644 --- a/deploy/nginx/locations.conf +++ b/deploy/nginx/locations.conf @@ -19,6 +19,10 @@ location /admin { try_files $uri $uri/ /index.html =404; } +location /.well-known { + alias /data/ssl/.well-known; +} + location / { root /app/dist; try_files $uri $uri/ /index.html =404;