Files
106_105_181_70/ssl_cert_note.md
Timmy 2e3e5d9aa2 docs: 新增 SSL 憑證紀錄,更新 README 文件索引
- 憑證 2026-04-23 到期,憑證鏈不完整需補中繼 CA
- README 補充所有文件說明

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 09:20:16 +08:00

36 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# SSL 憑證紀錄 - tpesupporter.tpech.gov.tw
## 憑證資訊
| 項目 | 內容 |
|---|---|
| CN | tpesupporter.tpech.gov.tw |
| 組織 | 政府機關-臺北市立聯合醫院 |
| 簽發者 | HiPKI OV TLS CA - G1中華電信 |
| 有效期起 | 2025-04-23 |
| 有效期迄 | 2026-04-23 |
| TLS 版本 | TLSv1.3 |
| 加密套件 | TLS_AES_256_GCM_SHA384 |
| 金鑰 | RSA 2048 bit |
## 待處理事項
- [ ] 憑證將於 **2026-04-23** 到期,需提前更新
- [ ] 憑證鏈不完整:伺服器僅送出終端憑證,缺少中繼 CAHiPKI OV TLS CA - G1需在 NPM 補上中繼憑證
## 中繼憑證補充方式
1. 下載中繼憑證https://tls.hinet.net/certs/OVCA-G1.crt
2. 在 NPM 管理後台 (localhost:8181) → SSL Certificates → 編輯對應憑證
3. 將中繼憑證內容附加到憑證檔案中(或上傳為 intermediate certificate
## 檢查指令
```bash
# 在 hospital_web 上檢查憑證
echo | openssl s_client -connect localhost:443 -servername tpesupporter.tpech.gov.tw 2>/dev/null | openssl x509 -noout -dates -subject -issuer
# 檢查憑證鏈完整性
echo | openssl s_client -connect localhost:443 -servername tpesupporter.tpech.gov.tw 2>&1 | grep "Verify return code"
```