proxmox-rest-server: improve docs

And rename enable_file_log to enable_access_log.
This commit is contained in:
Dietmar Maurer
2021-09-30 11:59:21 +02:00
parent 2e44983a37
commit 0d5d15c9d1
6 changed files with 56 additions and 15 deletions

View File

@ -52,8 +52,9 @@ impl UserInformation for EmptyUserInformation {
fn lookup_privs(&self, _userid: &str, _path: &[&str]) -> u64 { 0 }
}
/// REST server implementation (configured with [ApiConfig])
pub struct RestServer {
pub api_config: Arc<ApiConfig>,
api_config: Arc<ApiConfig>,
}
const MAX_URI_QUERY_LENGTH: usize = 3072;