Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-updates > by-pkgid > a32585fcac51c3e08c1bf2747944fc27 > files > 6

acme-2.0.0-1.mga7.noarch.rpm

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;
        }
}