Make the locks dir with 755 instead of 700

This commit is contained in:
BBaoVanC 2021-12-23 19:04:09 -06:00
parent 4a9a4f7be2
commit 953f72da76
No known key found for this signature in database
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ func setup() *web.Mux {
log.Fatal("Could not create metadata directory:", err)
}
err = os.MkdirAll(Config.locksDir, 0700)
err = os.MkdirAll(Config.locksDir, 0755)
if err != nil {
log.Fatal("Could not create locks directory:", err)
}