lego/providers/http/memcached
2024-02-08 03:16:48 +01:00
..
memcached.go chore: fix grammar and typo (#1978) 2023-07-29 12:59:24 +02:00
memcached_test.go chore: update to go1.21 (#2103) 2024-02-08 03:16:48 +01: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;
    }