Log signed GET

main
Bob Mottram 2021-09-01 16:00:34 +01:00
parent 196c8aba14
commit 049cea43b8
1 changed files with 3 additions and 0 deletions

View File

@ -11077,6 +11077,9 @@ class PubServer(BaseHTTPRequestHandler):
return True
def do_GET(self):
if self.headers.get('Signature'):
print('Signed GET: ' + str(self.headers))
callingDomain = self.server.domainFull
if self.headers.get('Host'):
callingDomain = decodedHost(self.headers['Host'])