Skip to content

Commit

Permalink
fix: fix the fucking typo again.
Browse files Browse the repository at this point in the history
  • Loading branch information
KyoungsueKim committed Dec 18, 2023
1 parent efc905d commit eef8f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verbose-waffle/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ async def receive_file(phone_number: str = Form(...), file: UploadFile = File(..


if __name__ == '__main__':
server_fullchain: str = "/etc/letsencrypt/live/kksoft.kr/fullchain.pem"
server_private_key: str = "/etc/letsencrypt/live/kksoft.kr/private.pem"
server_fullchain: str = "/etc/letsencrypt/live/kksoft.kr/fullchain1.pem"
server_private_key: str = "/etc/letsencrypt/live/kksoft.kr/privkey1.pem"
if not os.path.isfile(server_fullchain) or not os.path.isfile(server_private_key):
print("SSL Certificate file does not exist. Exit the fastapi instance.")
exit(1)
Expand Down

0 comments on commit eef8f8f

Please sign in to comment.