not check tls certificat when connection to server by default

This commit is contained in:
2025-03-08 12:13:46 +01:00
parent 31d2e7ea55
commit 0768e7f254
2 changed files with 17 additions and 8 deletions
+2 -1
View File
@@ -27,7 +27,8 @@ if __name__ == "__main__":
snake_type=os.environ.get("SNAKE", "TemplateSnake"),
storage_type=os.environ.get("STORAGE", "LocalStorage"),
store_game_when_win_and_moves_are_bigger_as=int(os.environ.get("STORE_IF_WIN_AND_MOVES_ARE_BIGGER_AS", 10)),
debug=os.environ.get("DEBUG_SERVER", False)
debug=os.environ.get("DEBUG_SERVER", False),
check_tls_security=False
)
if os.environ.get("STORE_GAME_HISTORY", None):