Merge "Debug with barbican-api"
This commit is contained in:
commit
e4ff8fe811
@ -3,15 +3,15 @@
|
||||
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='.')
|
||||
'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')
|
||||
httpserver.serve(application, host='0.0.0.0', port='9311')
|
||||
|
||||
if __name__ == '__main__':
|
||||
run()
|
||||
|
Loading…
Reference in New Issue
Block a user