Changes related to running oof on TLS/HTTPS
[optf/has.git] / conductor / docker / app.wsgi
1 """Use this file for deploying the API under mod_wsgi.
2 See http://pecan.readthedocs.org/en/latest/deployment.html for details.
3 """
4 from conductor import service
5 from conductor.api import app
6
7 # Initialize the oslo configuration library and logging
8
9 # Prepare service-wide components (e.g., config)
10 conf = service.prepare_service(
11      [], config_files=['/usr/local/etc/conductor/conductor.conf'])
12
13 #conf = service.prepare_service([])
14 application = app.load_app(conf)