差異處
這裏顯示兩個版本的差異處。
| 兩邊的前次修訂版 前次修改 下次修改 | 前次修改 | ||
| tech:nginx_proxy_manager [2025/07/02 10:51] – 8. 升級到 v2.12.4 後管理介面無法登入議題 jonathan | tech:nginx_proxy_manager [2026/05/05 16:30] (目前版本) – [編輯與啟動] jonathan | ||
|---|---|---|---|
| 行 42: | 行 42: | ||
| watchtower: | watchtower: | ||
| - | image: | + | image: |
| container_name: | container_name: | ||
| volumes: | volumes: | ||
| 行 204: | 行 204: | ||
| pve-rproxy: | pve-rproxy: | ||
| </ | </ | ||
| + | |||
| + | ==== 9. 查看 SSL Certificates 紀錄的設定內容 ==== | ||
| + | * 因為 Web UI 只能針對 SSL Certificates 新增或刪除, | ||
| + | * 進入 data 目錄應該可以看到 database.sqlite | ||
| + | * 使用 sqlite3 進入查詢< | ||
| + | ~/ | ||
| + | SQLite version 3.49.2 2025-05-07 10:39:52 | ||
| + | sqlite> select * from certificate; | ||
| + | 1|2024-01-25 12: | ||
| + | </ | ||
| + | * 如果有興趣了解整個資料庫結構可以下 **.fullschema** 查看< | ||
| + | sqlite> .fullschema | ||
| + | CREATE TABLE `knex_migrations` (`id` integer not null primary key autoincrement, | ||
| + | CREATE TABLE `knex_migrations_lock` (`index` integer not null primary key autoincrement, | ||
| + | CREATE TABLE `migrations` (`id` integer not null primary key autoincrement, | ||
| + | : | ||
| + | CREATE TABLE `access_list_client` (`id` integer not null primary key autoincrement, | ||
| + | /* No STAT tables available */ | ||
| + | </ | ||
| + | |||
| ===== 參考網址 ===== | ===== 參考網址 ===== | ||