Commit d23e92b6 authored by Mart van Santen's avatar Mart van Santen
Browse files

* Updated documentatiosn

* Added dist-info
parent 079de2e0
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line



# H2 haproxy configuration. 
# installation

be sure this module is installed. It it not yet pip activated. It means coping the files
to

/path/to/letsencrypt/venv/lib/python2.7/site-packages/letsencrypt_haproxy
/path/to/letsencrypt/venv/lib/python2.7/site-packages/letsencrypt_haproxy-0.0.1.dist-info/

afterwards, source the letsencrypt enviroment and get a certificate

```
source venv/bin/activate
letsencrypt --authenticator letsencrypt-haproxy:auth --installer  letsencrypt-haproxy:installer  -d domainname.com
```


# haproxy configuration. 


Below is a snippet of haproxy configuration. 
+3 −0
Original line number Diff line number Diff line
UNKNOWN

+1 −0
Original line number Diff line number Diff line
pip
+35 −0
Original line number Diff line number Diff line
Metadata-Version: 2.0
Name: letsencrypt-haproxy
Version: 0.0.1
Summary: HAproxy plugin for Let's Encrypt client
Author: Mart van Santen
Author-email: mart@greenhost.nl
License: MIT
Keywords: letsencrypt,haproxy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Dist: PyOpenSSL
Requires-Dist: acme (>=0.1.1)
Requires-Dist: letsencrypt (>=0.1.1)
Requires-Dist: mock
Requires-Dist: pyparsing (>=1.5.5)
Requires-Dist: setuptools
Requires-Dist: zope.interface

UNKNOWN

+4 −0
Original line number Diff line number Diff line
[letsencrypt.plugins]
auth = letsencrypt_haproxy.authenticator:Authenticator
installer = letsencrypt_haproxy.installer:Installer
Loading