Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

## Unreleased

* The hosting server now serves hidden files (dotfiles).

## v0.19.0 (June 7, 2026)

* Fixed a browser context leak that could crash Chrome and cause errant test failures. Chrome windows now shut down more reliably.
Expand Down
6 changes: 5 additions & 1 deletion toolproof/src/definitions/hosting/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ mod host_dir {
let port = civ.ensure_port();
let dir = civ.tmp_file_path(&dir);
match HttpServer::new(move || {
App::new().service(actix_files::Files::new("/", &dir).index_file("index.html"))
App::new().service(
actix_files::Files::new("/", &dir)
.index_file("index.html")
.use_hidden_files(),
)
})
.bind(("127.0.0.1", port))
{
Expand Down
Loading