This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2024-03-24 Gerben Aaltink | |
# Application for hosting both HTTPS and SSH on port 443 | |
# Benefits: | |
# - port 443 is allowed in any network | |
# - port hiding for hackers | |
import asyncio | |
LISTEN_PORT = 443 | |
LISTEN_HOST = '0.0.0.0' |