Move registration server port to 1337

This commit is contained in:
Anthony Wang 2022-01-16 16:35:05 -06:00
parent f80292a316
commit f615cb22ca
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -44,5 +44,5 @@ class Server(BaseHTTPRequestHandler):
ldap_pass = input('LDAP password: ')
code = input('Registration code: ')
httpd = HTTPServer(('localhost', 6789), Server)
httpd = HTTPServer(('localhost', 1337), Server)
httpd.serve_forever()