lego/providers/http/memcached
Ludovic Fernandez ad20bf90ff Migrate to golangci-lint (#644)
* refactor: linting.

- errcheck
- govet
- golint
- goconst
- spellcheck
- ...

* refactor: migrate from gometalinter to golangci-lint.
2018-09-24 19:07:20 +00:00
..
memcached.go ACME V2 support (#555) 2018-05-30 19:53:04 +02:00
memcached_test.go Migrate to golangci-lint (#644) 2018-09-24 19:07:20 +00: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;
    }