diff options
author | FChannel <> | 2021-06-28 12:06:20 -0700 |
---|---|---|
committer | FChannel <> | 2021-06-28 12:06:20 -0700 |
commit | ac7fd1f68d396cb676a9a111bddae7e36302b4c6 (patch) | |
tree | 97234ae9e079cb02c88360c281c93d831454c976 /verification.go | |
parent | 94c92948ae7ae669b6b6466ef4b7f00cc430f7ef (diff) |
tor proxy, added server version in faq, increased verification time
Diffstat (limited to 'verification.go')
-rw-r--r-- | verification.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verification.go b/verification.go index db44689..38c7bbe 100644 --- a/verification.go +++ b/verification.go @@ -661,7 +661,7 @@ func VerifyHeaderSignature(r *http.Request, actor Actor) bool { t, _ := time.Parse(time.RFC1123, date) - if(time.Now().Sub(t).Seconds() > 30) { + if(time.Now().Sub(t).Seconds() > 75) { return false } |