mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 05:31:22 -03:30
Use singular keyfile
This commit is contained in:
parent
25c117782c
commit
444430ed5b
@ -106,7 +106,7 @@ class Command(NoArgsCommand):
|
||||
if os.path.exists('/etc/awx/awx.cert') and os.path.exists('/etc/awx/awx.key'):
|
||||
print 'Listening on port https://0.0.0.0:' + str(socketio_listen_port)
|
||||
server = SocketIOServer(('0.0.0.0', socketio_listen_port), TowerSocket(), resource='socket.io',
|
||||
keyfiles='/etc/awx/awx.key', certfile='/etc/awx/awx.cert')
|
||||
keyfile='/etc/awx/awx.key', certfile='/etc/awx/awx.cert')
|
||||
else:
|
||||
print 'Listening on port http://0.0.0.0:' + str(socketio_listen_port)
|
||||
server = SocketIOServer(('0.0.0.0', socketio_listen_port), TowerSocket(), resource='socket.io')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user