diff options
author | Jannick <[email protected]> | 2024-04-26 14:40:54 +0200 |
---|---|---|
committer | Jannick <[email protected]> | 2024-04-26 14:40:54 +0200 |
commit | 22d80f90b6b60b6a40a30b772716b950239b539b (patch) | |
tree | 7e7bd7c0e8176f845d0f8b6e6a640e2ce15d45ab | |
parent | 2bf130581b763819672551c138cc70119005ef93 (diff) |
localhost ssl stuff
-rw-r--r-- | app.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3,7 +3,6 @@ from bottle import jinja2_template as template from oauthlib.oauth2 import WebApplicationClient from requests_oauthlib import OAuth2Session from dotenv import load_dotenv -import cherrypy import secrets import os import sqlite3 @@ -70,4 +69,4 @@ def server_static(type, filename): debug(True) run(app, host='localhost', port=8080, reloader=True, - server="gunicorn", keyfile="./pki/server.key", certfile="./pki/server.crt") + server="waitress", keyfile="./pki/server.key", certfile="./pki/server.crt") |