執行 Fluxheim
想快速開一個本機伺服器時用呢頁。設定保持精簡,並會喺開始處理流量前先檢查。
Install a release binary
curl -L https://github.com/valkyoth/fluxheim/releases/download/v1.8.0/fluxheim-1.8.0-full-x86_64-linux.tar.gz -o fluxheim.tar.gz
tar -xzf fluxheim.tar.gz
sudo install -m 0755 fluxheim /usr/local/bin/fluxheim
最小靜態站點
[server]
listen = ["0.0.0.0:8080"]
default_vhost = "site"
[[vhosts]]
name = "site"
hosts = ["example.com"]
[vhosts.web]
root = "/srv/example"
index_files = ["index.html"]
deny_dotfiles = true
第一個配置的作用是什麼
| 選項 | 用途 |
|---|---|
server.listen | 控制s the plain HTTP socket Fluxheim opens. |
server.default_vhost | 當沒有主機匹配時選擇後備站點。 |
vhosts.hosts | 列出網站接受的主機名稱。 |
vhosts.web.root | 為訪客提供的目錄點。 |
檢查並啟動
fluxheim --config /etc/fluxheim/fluxheim.toml --check-config
fluxheim --config /etc/fluxheim/fluxheim.toml
喺 deployment script 入面做 config check;佢會喺轉移流量之前搵出未知 field、不安全 path、無效 listener 同 feature/config 唔相符。
下一步有用選擇
- 僅在 DNS 指向主機後新增 TLS。
- Add cache only for routes that are safe to share between visitors.
- Add metrics only when the listener is private or behind a trusted proxy.