fix to allow for reverse proxying

This commit is contained in:
TriMill 2022-07-03 17:20:23 -04:00
parent 3b81b5a959
commit 079fe1502d
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ pub fn start(address: &str, thread_count: usize, state: Arc<Mutex<State>>) -> Ve
continue
}
};
let res = match url.path() {
let page = url.path().split("/").last().unwrap_or("");
let res = match page {
"/rss.xml" => {
let guard = state.lock().unwrap();
let header = tiny_http::Header::from_bytes(&b"Content-Type"[..], &b"text/xml"[..]).unwrap();