File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 88
99```
1010dnf -y install certbot
11- sudo certbot certonly --standalone
11+ certbot certonly --standalone -d www.domain.com -d domain.com -m your.name@domain.com --agree-tos --no-eff-email
12+ yes | cp /etc/letsencrypt/live/domain.com/fullchain.pem ~/domain.com/application/cert/cert.pem
13+ yes | cp /etc/letsencrypt/live/domain.com/privkey.pem ~/domain.com/application/cert/key.pem
1214```
1315
14- or
16+ Or use impress web server for challenge exchange:
1517
1618```
17- curl -O https://dl.eff.org/certbot-auto
18- chmod a+x certbot-auto
19- ./certbot-auto certonly
19+ certbot certonly --webroot -w ~/domain.com/application/static -d www.domain.com -d domain.com -m your.name@domain.com --agree-tos --no-eff-email
2020```
2121
2222## Self-signed (for testing)
You can’t perform that action at this time.
0 commit comments