view main.py @ 77:a1dfce599136

Add a wsgi file for running odfcast within apaches mod_wsgi
author Björn Ricks <bjoern.ricks@intevation.de>
date Tue, 17 Feb 2015 15:19:37 +0100
parents dcf870775c26
children
line wrap: on
line source
# -*- coding: utf-8 -*-
if __name__ == "__main__":
    from odfcast import app

    server_name = app.config['SERVER_NAME']
    if server_name and ':' in server_name:
        host, port = server_name.rsplit(':', 1)
        port = int(port)
    else:
        port = 5000
        host = "127.0.0.1"

    app.run(host=host, port=port)
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)