https://github.com/dashingsoft/dashingsoft.github.io
The website page of dashingsoft.com
https://github.com/dashingsoft/dashingsoft.github.io
Last synced: 4 months ago
JSON representation
The website page of dashingsoft.com
- Host: GitHub
- URL: https://github.com/dashingsoft/dashingsoft.github.io
- Owner: dashingsoft
- Created: 2016-05-10T01:29:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T02:48:22.000Z (12 months ago)
- Last Synced: 2025-02-20T03:29:42.500Z (12 months ago)
- Language: HTML
- Homepage: https://pyarmor.dashingsoft.com
- Size: 98.1 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dashingsoft
Dashingsoft web home page.
## https 域名配置
使用 `letsencrypt` 配置免费的 https 域名::
cd /opt
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
./certbot-auto --no-self-upgrade
根据提示选择需要配置的域名,这种方式最简单。
添加自动更新脚本,每周一早上 5 点执行一次::
crontab -e
0 5 * * 1 /opt/letsencrypt/certbot-auto --no-self-upgrade renew
注意要使用 `--no-self-upgrade` ,否则会自动升级,而升级失败会导致无法正常更新。
升级失败解决方法,例如 升级到 `0.35.0` 的时候失败,无法找到对应的包,
那么使用下面的方式恢复到以前的版本 `0.34.0`::
cd /opt/letsencrypt
git checkout v0.34.0
./certbot-auto --no-self-upgrade