mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
aquatic_ws: comment out privilege settings since they're not implemented
This commit is contained in:
parent
0eb4039b5e
commit
ad925c07f1
2 changed files with 2 additions and 7 deletions
|
|
@ -158,11 +158,6 @@ channel_recv_timeout_microseconds = 200
|
||||||
interval = 30
|
interval = 30
|
||||||
max_peer_age = 180
|
max_peer_age = 180
|
||||||
max_connection_age = 180
|
max_connection_age = 180
|
||||||
|
|
||||||
[privileges]
|
|
||||||
drop_privileges = false
|
|
||||||
chroot_path = '.'
|
|
||||||
user = 'nobody'
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### TLS
|
### TLS
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ pub struct Config {
|
||||||
pub network: NetworkConfig,
|
pub network: NetworkConfig,
|
||||||
pub handlers: HandlerConfig,
|
pub handlers: HandlerConfig,
|
||||||
pub cleaning: CleaningConfig,
|
pub cleaning: CleaningConfig,
|
||||||
pub privileges: PrivilegeConfig,
|
// pub privileges: PrivilegeConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -78,7 +78,7 @@ impl Default for Config {
|
||||||
network: NetworkConfig::default(),
|
network: NetworkConfig::default(),
|
||||||
handlers: HandlerConfig::default(),
|
handlers: HandlerConfig::default(),
|
||||||
cleaning: CleaningConfig::default(),
|
cleaning: CleaningConfig::default(),
|
||||||
privileges: PrivilegeConfig::default(),
|
// privileges: PrivilegeConfig::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue