Initial commit: 新增 DNS 記錄與 SSH 連線設定文件

- dns_records.md: tel / tpesupporter.tpech.gov.tw DNS A 記錄
- ssh_config.md: 跳板機與醫院伺服器 SSH 連線架構
- .gitignore: 排除 tar.gz 與 php 目錄

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-09 08:56:07 +08:00
commit aeb6681e89
3 changed files with 35 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*.tar.gz
php/

6
dns_records.md Normal file
View File

@@ -0,0 +1,6 @@
# DNS Records - tpech.gov.tw
| 主機名稱 | 類型 | Class | TTL | 值 |
|---|---|---|---|---|
| tel.tpech.gov.tw. | A | IN | 600s | 106.105.181.40 |
| tpesupporter.tpech.gov.tw. | A | IN | 600s | 106.105.181.70 |

27
ssh_config.md Normal file
View File

@@ -0,0 +1,27 @@
# SSH Config
```ssh-config
Host jason_hsieh_home_srv
HostName 220.135.27.129
User timmy
Port 2022
# Hospital Media Server (影音/通訊服務)
Host hospital_media
HostName 106.105.181.40
User tpech_1duan
ProxyJump jason_hsieh_home_srv
# Hospital Web Server (網頁/NPM 管理)
Host hospital_web
User tpech_1duan
HostName 106.105.181.70
ProxyJump jason_hsieh_home_srv
# 端口轉發設定
```
## 連線架構
- **jason_hsieh_home_srv** (220.135.27.129:2022) — 跳板機
- **hospital_media** (106.105.181.40) — 影音/通訊服務,透過跳板連線,對應 `tel.tpech.gov.tw`
- **hospital_web** (106.105.181.70) — 網頁/NPM 管理,透過跳板連線,對應 `tpesupporter.tpech.gov.tw`