aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2024-06-27 08:00:00 +0800
committerRunxi Yu <me@runxiyu.org>2024-06-27 08:00:00 +0800
commit64293fca93be53ded190d0a186d2bfcebf3af942 (patch)
tree04c853b4e5d7c6dee201679012acecc6f95f3f49
parentOkay I don't actually want the .txt files to be included (diff)
downloadidc-master.tar.gz
idc-master.zip
Update names/www/emails; use /tmp/{k,f}.pemHEADmaster
-rw-r--r--pyidcd.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyidcd.py b/pyidcd.py
index be905ef..56a2fa3 100644
--- a/pyidcd.py
+++ b/pyidcd.py
@@ -2,9 +2,9 @@
#
# Internet Delay Chat server written in Python Trio.
#
-# Written by: Andrew <https://www.andrewyu.org/>
-# luk3yx <https://luk3yx.github.io/>
-# Sus_User <https://users.andrewyu.org/~hax/>
+# Written by: Runxi Yu <https://runxiyu.org>
+# Luke <https://luk3yx.github.io>
+# Test_User <hax@andrewyu.org>
#
# This is free and unencumbered software released into the public
# domain.
@@ -58,8 +58,8 @@ PORT = 6835
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
ctx.load_cert_chain(
- "/etc/letsencrypt/live/fcm.andrewyu.org/fullchain.pem",
- "/etc/letsencrypt/live/fcm.andrewyu.org/privkey.pem",
+ "/tmp/f.pem",
+ "/tmp/k.pem",
)
client_id_counter = -1