aboutsummaryrefslogtreecommitdiffstats
path: root/snippets/nginx.conf
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2021-02-17 20:54:19 +0100
committerGuilhem Moulin <guilhem@fripost.org>2021-02-18 00:42:32 +0100
commitd6f008f8a3a9724e5acbcb8b9df29304279f4106 (patch)
tree989f309dd1c9759590cdf3e95c3524b02cc1e5ac /snippets/nginx.conf
parent4886d0dd6c77d029209cc09a9e15a89ffb23b9fc (diff)
Split Nginx and Apapche2 static configuration snippets into seperate files.
That way users prefering that over reverse-proxying can just source/enable the relevant files without having to uncomment anything.
Diffstat (limited to 'snippets/nginx.conf')
-rw-r--r--snippets/nginx.conf19
1 files changed, 4 insertions, 15 deletions
diff --git a/snippets/nginx.conf b/snippets/nginx.conf
index 76309f0..891a834 100644
--- a/snippets/nginx.conf
+++ b/snippets/nginx.conf
@@ -1,20 +1,9 @@
-# Use Nginx to serve ACME requests; either directly, or by passing them
-# over to a locally-bound lacme webserver component.
+# Use Nginx to proxy ACME requests to a locally-bound lacme webserver.
#
-# This file needs to be sourced to the server directives (at least the
-# non-ssl one) of each virtual host requiring authorization.
+# One of the nginx*.conf file needs to be sourced to the server
+# directives (at least the non-ssl one) of each virtual host requiring
+# authorization.
location ^~ /.well-known/acme-challenge/ {
- # Pass ACME requests to lacme's webserver component
proxy_pass http://unix:@@runstatedir@@/lacme-www.socket;
-
-
- ## Alternatively, you can let nginx serve the requests by
- ## setting 'challenge-directory' to '/var/www/acme-challenge' in
- ## lacme's configuration file and uncomment the following:
-
- # alias /var/www/acme-challenge/;
- # default_type application/jose+json;
- # disable_symlinks on;
- # autoindex off;
}