lego/providers/http/memcached
Fernandez Ludovic e7a90b9471 chore: migrate to go module (v3.0.0)
- chore: update dependencies: use version with go modules.
- chore: remove dep.
- chore: update backoff imports.
- chore: init go module.
- chore: update CI.
- chore: mod v3
- chore: update docker image.
2019-08-07 14:07:47 +02:00
..
memcached.go chore: migrate to go module (v3.0.0) 2019-08-07 14:07:47 +02:00
memcached_test.go chore: migrate to go module (v3.0.0) 2019-08-07 14:07:47 +02:00
README.md add memcached provider (#296) 2016-10-24 11:03:18 +02:00

Memcached http provider

Publishes challenges into memcached where they can be retrieved by nginx. Allows specifying multiple memcached servers and the responses will be published to all of them, making it easier to verify when your domain is hosted on a cluster of servers.

Example nginx config:

    location /.well-known/acme-challenge/ {
        set $memcached_key "$uri";
        memcached_pass 127.0.0.1:11211;
    }