Merge pull request #154 from quantenzitrone/nonlegacy-ip

src/config.rs: bind to legacy and nonlegacy ip addresses by default
This commit is contained in:
Lennart Kämmle
2025-12-15 12:02:16 +01:00
committed by GitHub

View File

@@ -14,7 +14,7 @@ pub struct HttpConfig {
impl Default for HttpConfig {
fn default() -> Self {
Self {
host: "0.0.0.0".to_owned(),
host: "[::]".to_owned(),
port: 4000,
session_cookie_samesite_strict: false,
payload_limit_mb: 4,