summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannick <[email protected]>2024-04-26 14:40:54 +0200
committerJannick <[email protected]>2024-04-26 14:40:54 +0200
commit22d80f90b6b60b6a40a30b772716b950239b539b (patch)
tree7e7bd7c0e8176f845d0f8b6e6a640e2ce15d45ab
parent2bf130581b763819672551c138cc70119005ef93 (diff)
localhost ssl stuff
-rw-r--r--app.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/app.py b/app.py
index 2e6929a..5529326 100644
--- a/app.py
+++ b/app.py
@@ -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")