Skip to content
Snippets Groups Projects
Unverified Commit f8244c48 authored by Martijn Braam's avatar Martijn Braam
Browse files

Add uwsgi support

parent 61a6f476
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ from math import ceil
from flask import Flask, render_template, redirect, url_for, g, request
app = Flask(__name__)
application = app
config = configparser.ConfigParser()
config.read("config.ini")
......
[uwsgi]
plugins = python3
wsgi-file = app.py
master = true
processes = 5
socket = 127.0.0.1:8042
die-on-term = true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment