diff options
| author | Fuwn <[email protected]> | 2026-01-19 04:13:03 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-19 04:13:03 -0800 |
| commit | 412fb771235a03cca73f59c5e249b057bdb06ecb (patch) | |
| tree | 5503311f9b8b48b934398a405a4252b986fe151d /config.example.yaml | |
| parent | fix: Implement response buffering to prevent broken pipe errors (diff) | |
| download | kaze-412fb771235a03cca73f59c5e249b057bdb06ecb.tar.xz kaze-412fb771235a03cca73f59c5e249b057bdb06ecb.zip | |
feat: Add browser timezone option for client-side time display
Diffstat (limited to 'config.example.yaml')
| -rw-r--r-- | config.example.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/config.example.yaml b/config.example.yaml index d5355da..81297c5 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -40,8 +40,12 @@ display: # false = Grow dynamically as pings come in ping_fixed_slots: true - # Timezone for display (e.g., "UTC", "America/New_York", "Local") - timezone: "Local" + # Timezone for display: + # "Browser" - Use visitor's browser timezone (recommended for public status pages) + # "Local" - Use server's local timezone + # "UTC" - Use UTC timezone + # "America/New_York" - Use specific IANA timezone (e.g., "Europe/London", "Asia/Tokyo") + timezone: "Browser" # Show the theme toggle button (true by default) # Set to false to hide the light/dark mode toggle |