From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 19 Sep 2017 11:45:49 +0000 (+0200)
Subject: Add nginx example configuration
X-Git-Tag: 1.0.0
X-Git-Url: https://git.rapsys.eu/acme/commitdiff_plain/d17b7963e424d3574a4673e26ebd9aab38b741e6?ds=inline

Add nginx example configuration
Rename apache config
---

diff --git a/www/acme.conf b/www/acme.apache.conf
similarity index 100%
rename from www/acme.conf
rename to www/acme.apache.conf
diff --git a/www/acme.nginx.conf b/www/acme.nginx.conf
new file mode 100644
index 0000000..4d807d1
--- /dev/null
+++ b/www/acme.nginx.conf
@@ -0,0 +1,19 @@
+server {
+        listen          80;
+        server_name     example.com;
+
+        root /usr/share/acme;
+
+        location ~ ^/.well-known/acme-challenge {
+                rewrite ^/.well-known/acme-challenge/(.*)$ /acme-challenge.php?key=$1 last;
+        }
+
+        location ~ ^/acme-challenge\.php$ {
+                fastcgi_pass unix:/tmp/php5-fpm.sock;
+                include fastcgi_params;
+        }
+
+        location / {
+                return 301 https://$server_name$request_uri;
+        }
+}