Let’s encrypt Auto Renew acme.sh

紀錄一下Linux 除了certbot 之外好用的SSL Auto Renew工具acme.sh
官方網站介紹
https://github.com/Neilpang/acme.sh
優點如下:
1.支援 DNS base驗證並結合API,目前結合DNS API請參考網址
https://github.com/Neilpang/acme.sh/tree/master/dnsapi
2.支援 File base驗證整合WebServer 設定,獲取SSL憑證
3.Auto renew
整體流程如下:
1.取得Cloudflare DNS API key
2.安裝acme.sh
3.產生證書
4.更新acme.sh
5.自帶CSR獲取SSL憑證
6.透過File base驗證

閱讀更多Let’s encrypt Auto Renew acme.sh

CentOS Apache 提高網頁傳輸效能

最近有個客戶,因為本身頻寬不足,且也沒預算升級頻寬,但卻又不斷反應網站延遲很高,試問該如何解決呢?

在頻寬不足時,想要有低延遲,的確很難
我想到的解決方式:
1.壓縮
2.快取
3.降低HTTP Request次數 (HTTP2.0)
4.使用CDN
5.減少DNS解析次數
以下網站可以測試網站傳輸效能,並且提出效能不足的解決方式
https://developers.google.com/speed/pagespeed/insights/
https://tools.pingdom.com/

閱讀更多CentOS Apache 提高網頁傳輸效能