diff --git a/.dockerignore b/.dockerignore index d8e4c649..d9e9d2db 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,7 +6,8 @@ .github/ .semgrepignore build/binary -docs/ +#docs required by rpm build +#docs/ install.sh mkdocs.yml snapcraft.yaml diff --git a/docs/changelog.md b/docs/changelog.md index 3a5b9990..9a62b9c3 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Add docker-compose.yml ([#367](https://github.com/wabarc/wayback/pull/367)) +### Changed +- Set NoWait to true for tor listen config ([#368](https://github.com/wabarc/wayback/pull/368)) + ## [0.19.1] - 2023-03-21 ### Fixed diff --git a/service/httpd/tor.go b/service/httpd/tor.go index 756b1c44..458e9e38 100644 --- a/service/httpd/tor.go +++ b/service/httpd/tor.go @@ -67,6 +67,7 @@ func (h *Httpd) startTorServer(server *http.Server) error { LocalListener: listener, RemotePorts: h.opts.TorRemotePorts(), Version3: true, + NoWait: true, Key: pvk, }) if err != nil {