250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- vscode
- LetsEncrypt
- CentOS7
- crontab
- html
- Fail2ban
- Liniux
- DOM Parser
- 구글 클라우드
- Linux
- https
- Certbot
- centos
- home page
- Mac
- git pull
- mysql
- SSL
- front page
- Google Cloud
- MariaDB
- Xdebug
- root
- non-www
- launch.json
- new user
- child theme
- Apache
- php
- wordpress
Archives
- Today
- Total
목록Certbot (2)
between 0 and 1
[SSL] Auto-renewal SSL on CentOS (let's encrypt, certbot)
To renew ssl automatically, We can use crontab. Step 1. enter crontab edit mode $ sudo crontab -e Step 2. certbot auto-renewal script ## certbot 30 4 * * 0 certbot renew >> /home/log/certbot/cert_$(date +\%Y\%m\%d).log above script will be executed 4:30 AM on every Sunday. and the execution log will be stored in the "/home/log/certbot/" folder.
Software Development Engineering/Dev.Info.
2021. 2. 9. 01:46
[SSL] Let's encrypt on Cent OS (how to install)
Prerequisites - CentOS - Apache Web Server on CentOS Step 1 - Installing the Crertbot Let's Encrypt Client $ sudo yum install epel-release $ sudo yum install certbot python2-certbot-apache mod_ssl -y Step 2 - Obtaining a Certificate $ sudo letsencrypt Step 3 - set information and select domain for ssl 1) set email address Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected:..
Software Development Engineering/Dev.Info.
2021. 2. 9. 01:30