1
0
Fork 0
rophako/runserver.py

51 linhas
1.2 KiB
Python
Original Visão normal Histórico

2014-02-19 06:30:21 +00:00
#!/usr/bin/env python
2014-04-18 23:00:13 +00:00
# -*- coding: utf-8 -*-
2015-07-10 07:27:13 +00:00
from __future__ import unicode_literals, absolute_import
2014-04-18 23:00:13 +00:00
import argparse
2014-02-19 06:30:21 +00:00
2014-07-23 19:39:58 +00:00
from rophako.app import app
2014-04-18 23:00:13 +00:00
parser = argparse.ArgumentParser(description="Rophako")
parser.add_argument(
"--port", "-p",
type=int,
help="Port to listen on",
default=2006,
)
parser.add_argument(
"--key", "-k",
type=str,
help="SSL private key file. Providing this option will turn on SSL mode " \
+ "(and will require pyOpenSSL to be installed).",
)
parser.add_argument(
"--cert", "-c",
type=str,
help="SSL certificate file.",
)
2014-12-04 23:56:20 +00:00
parser.add_argument(
"--production",
help="Turns off debug mode, runs as if in production.",
action="store_true",
)
2014-04-18 23:00:13 +00:00
args = parser.parse_args()
if __name__ == '__main__':
flask_options = dict(
host='0.0.0.0',
2014-12-04 23:56:20 +00:00
debug=not args.production,
2014-04-18 23:00:13 +00:00
port=args.port,
threaded=True,
)
if args.key and args.cert:
from OpenSSL import SSL
context = SSL.Context(SSL.SSLv23_METHOD)
context.use_privatekey_file(args.key)
context.use_certificate_file(args.cert)
app.config['SESSION_COOKIE_SECURE'] = True
flask_options["ssl_context"] = context
app.run(**flask_options)