tls_enabled: true
# json web token for authorization between server and client
jwt_secret: "changeme"
+ # path to built documentation
+ docs_dir: "/app/documentation"
# address where pictrs is available
pictrs_url: "http://pictrs:8080"
# rate limits for various user actions, by user ip
use config::{Config, ConfigError, Environment, File};
use serde::Deserialize;
-use std::{env, fs, io::Error, net::IpAddr, sync::RwLock};
+use std::{env, fs, io::Error, net::IpAddr, path::PathBuf, sync::RwLock};
static CONFIG_FILE_DEFAULTS: &str = "config/defaults.hjson";
static CONFIG_FILE: &str = "config/config.hjson";
pub bind: IpAddr,
pub port: u16,
pub tls_enabled: bool,
+ pub docs_dir: PathBuf,
pub jwt_secret: String,
pub pictrs_url: String,
pub rate_limit: RateLimitConfig,
.configure(|cfg| images::config(cfg, &rate_limiter))
.configure(nodeinfo::config)
.configure(webfinger::config)
- .service(actix_files::Files::new("/docs", "/app/documentation"))
+ .service(actix_files::Files::new("/docs", Settings::get().docs_dir))
})
.bind((settings.bind, settings.port))?
.run()