mod server; pub use server::*; use std::path::Path; pub fn acme_challenges_snippet>(path: P) -> String { format!( "location ^~ /.well-known/acme-challenge/ {{ alias {}/; try_files $uri =404; }}", path.as_ref().to_str().unwrap() ) }