summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-01-20 12:26:58 -0500
committerrsiddharth <s@ricketyspace.net>2020-01-20 12:26:58 -0500
commit4374da716e3a7f067896a59bb1c75d10348640c3 (patch)
treed7bfb16c95d5b938d1713c9bb4b52fd19819c899
parentbf7d2c75693df78ec01e3a690c30027846d1ab8e (diff)
etc/nginx/sites.conf: Add special handling for acme.
-rw-r--r--etc/nginx/sites.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/nginx/sites.conf b/etc/nginx/sites.conf
index 5e16bad..9da0751 100644
--- a/etc/nginx/sites.conf
+++ b/etc/nginx/sites.conf
@@ -10,6 +10,10 @@ server {
listen [::]:443 ssl http2;
server_name nfsw.dingy.space;
+ location /.well-known/acme-challenge {
+ alias /acme;
+ }
+
location / {
try_files $uri @nfsw;
}