Standalone¶
Support for standalone client challenge solvers.
-
class
acme.standalone.
TLSServer
(*args, **kwargs)[source]¶ Bases:
socketserver.TCPServer
Generic TLS Server.
-
class
acme.standalone.
BaseDualNetworkedServers
(ServerClass, server_address, *remaining_args, **kwargs)[source]¶ Bases:
object
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.
HTTPServer
(*args, **kwargs)[source]¶ Bases:
http.server.HTTPServer
Generic HTTP Server.
-
class
acme.standalone.
HTTP01Server
(server_address, resources, ipv6=False)[source]¶ Bases:
acme.standalone.HTTPServer
,acme.standalone.ACMEServerMixin
HTTP01 Server.
-
class
acme.standalone.
HTTP01DualNetworkedServers
(*args, **kwargs)[source]¶ Bases:
acme.standalone.BaseDualNetworkedServers
HTTP01Server Wrapper. Tries everything for both. Failures for one don’t affect the other.
-
class
acme.standalone.
HTTP01RequestHandler
(*args, **kwargs)[source]¶ Bases:
http.server.BaseHTTPRequestHandler
HTTP01 challenge handler.
Adheres to the stdlib’s
socketserver.BaseRequestHandler
interface.- Variables
simple_http_resources (set) – A set of
HTTP01Resource
objects. TODO: better name?