Last active 3 months ago
0
0
1
| 1 | #!/bin/sh |
| 2 | |
| 3 | apt install python3 python3-dev python3-venv libaugeas-dev gcc |
| 4 | |
| 5 | python3 -m venv /opt/certbot/ |
| 6 | /opt/certbot/bin/pip install --upgrade pip |
| 7 | /opt/certbot/bin/pip install certbot certbot-nginx |
| 8 | |
| 9 | ln -s /opt/certbot/bin/certbot /usr/local/bin/certbot |