Standalone¶
Support for standalone client challenge solvers.
-
class
acme.standalone.
BaseDualNetworkedServers
(ServerClass, server_address, *remaining_args, **kwargs)[source]¶ Base class for a pair of IPv6 and IPv4 servers that tries to do everything it’s asked for both servers, but where failures in one server don’t affect the other.
If two servers are instantiated, they will serve on the same port.
-
class
acme.standalone.
TLSALPN01Server
(server_address, certs, challenge_certs, ipv6=False)[source]¶ TLSALPN01 Server.
-
class
acme.standalone.
HTTP01Server
(server_address, resources, ipv6=False, timeout=30)[source]¶ HTTP01 Server.
-
class
acme.standalone.
HTTP01DualNetworkedServers
(*args, **kwargs)[source]¶ HTTP01Server Wrapper. Tries everything for both. Failures for one don’t affect the other.
-
class
acme.standalone.
HTTP01RequestHandler
(*args, **kwargs)[source]¶ HTTP01 challenge handler.
Adheres to the stdlib’s
socketserver.BaseRequestHandler
interface.- Variables
simple_http_resources (set) – A set of
HTTP01Resource
objects. TODO: better name?