diff options
author | Runxi Yu <me@runxiyu.org> | 2024-06-27 08:00:00 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-06-27 08:00:00 +0800 |
commit | 64293fca93be53ded190d0a186d2bfcebf3af942 (patch) | |
tree | 04c853b4e5d7c6dee201679012acecc6f95f3f49 | |
parent | Okay I don't actually want the .txt files to be included (diff) | |
download | idc-master.tar.gz idc-master.zip |
-rw-r--r-- | pyidcd.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |