]> Raphaƫl G. Git Repositories - acme/blobdiff - www/acme.nginx.conf
Add nginx example configuration
[acme] / www / acme.nginx.conf
diff --git a/www/acme.nginx.conf b/www/acme.nginx.conf
new file mode 100644 (file)
index 0000000..4d807d1
--- /dev/null
@@ -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;
+        }
+}