mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Merged README to have both virtualenv and libssl-dev
This commit is contained in:
commit
4c771ae32f
4 changed files with 12 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,4 +2,5 @@
|
|||
*.egg-info
|
||||
build/
|
||||
dist/
|
||||
venv/
|
||||
m3
|
||||
|
|
|
|||
0
.gitmodules
vendored
0
.gitmodules
vendored
12
README.md
12
README.md
|
|
@ -3,17 +3,27 @@ This is the Let's Encrypt Agent DEVELOPER PREVIEW repository.
|
|||
DO NOT RUN THIS CODE ON A PRODUCTION WEBSERVER. IT WILL INSTALL CERTIFICATES
|
||||
SIGNED BY A TEST CA, AND WILL CAUSE CERT WARNINGS FOR USERS.
|
||||
|
||||
This code intended for testing, demonstration, and integration engineering
|
||||
This code is intended for testing, demonstration, and integration engineering
|
||||
with OSes and hosting platforms. Currently the code works with Linux and
|
||||
Apache, though we will be expanding it to other platforms.
|
||||
|
||||
## Running the demo code on Ubuntu
|
||||
|
||||
<<<<<<< HEAD
|
||||
`sudo apt-get install python python-setuptools python-dev python-augeas gcc swig dialog libssl-dev`
|
||||
|
||||
`python setup.py install --user`
|
||||
|
||||
`sudo ./letsencrypt.py` (or `~/.local/bin/letsencrypt`)
|
||||
=======
|
||||
```
|
||||
sudo apt-get install python python-setuptools python-virtualenv \
|
||||
python-dev python-augeas gcc swig dialog
|
||||
virtualenv --system-site-packages venv
|
||||
./venv/bin/python setup.py install
|
||||
sudo ./venv/bin/letsencrypt
|
||||
```
|
||||
>>>>>>> 45ef583a3cebca6159ca2e610b2d8cdd54e5ff6a
|
||||
|
||||
Note, that letsencrypt does not yet handle Debian unstable's Apache2
|
||||
conf layout.
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ import csv
|
|||
import requests
|
||||
|
||||
from letsencrypt.client.acme import acme_object_validate
|
||||
from letsencrypt.client.sni_challenge import SNI_Challenge
|
||||
from letsencrypt.client import configurator, apache_configurator
|
||||
from letsencrypt.client import logger, display
|
||||
from letsencrypt.client import le_util, crypto_util
|
||||
|
|
|
|||
Loading…
Reference in a new issue