fe365db0d6
This script does not require uwsgi and instead uses paste deploy to run Barbican. Change-Id: I4a0148ad081fb8e238528af4eb54da8f0dfb037f
18 lines
390 B
Python
Executable File
18 lines
390 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from paste import deploy
|
|
from paste import httpserver
|
|
|
|
def run():
|
|
prop_dir = 'etc/barbican'
|
|
|
|
application = deploy.loadapp(
|
|
'config:{prop_dir}/barbican-api-paste.ini'.format(prop_dir=prop_dir),
|
|
name='main',
|
|
relative_to='.')
|
|
|
|
httpserver.serve(application, host='127.0.0.1', port='9311')
|
|
|
|
if __name__ == '__main__':
|
|
run()
|