diff --git a/CHANGELOG.md b/CHANGELOG.md index 211c8d0..fe0acaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Accept actor objects where `attachment` property value is not an array. - Don't download HTML pages attached by GNU Social. - Ignore `Like()` activity if local post doesn't exist. +- Fixed `.well-known` paths returning `400 Bad Request` errors. ## [1.9.0] - 2023-01-08 diff --git a/src/web_client/views.rs b/src/web_client/views.rs index b61bd18..c59c236 100644 --- a/src/web_client/views.rs +++ b/src/web_client/views.rs @@ -24,6 +24,7 @@ pub fn static_service(web_client_dir: &Path) -> Files { Files::new("/", web_client_dir) .index_file("index.html") .prefer_utf8(true) + .use_hidden_files() .default_handler(fn_service(|service_request: ServiceRequest| { // Workaround for https://github.com/actix/actix-web/issues/2617 let (request, _) = service_request.into_parts();