Barbican uWSGI stats server listen on localhost
The current uWSGI Upstart script starts the stats server listening on all IPs. In order to reduce the attack surface, this patch modifies the Upstart script so that the stats server starts listening on localhost only. Closes-Bug: #1288881 Change-Id: I6141e665433d418b8cbecc4f065b8a3710310d29
This commit is contained in:
parent
45795fadbb
commit
c3a41505b7
2
debian/barbican-api.upstart
vendored
2
debian/barbican-api.upstart
vendored
@ -6,5 +6,5 @@ start on runlevel [2345]
|
||||
stop on runlevel [06]
|
||||
|
||||
script
|
||||
uwsgi --master --die-on-term --emperor /etc/barbican/vassals --logto /var/log/barbican/barbican-api.log
|
||||
uwsgi --master --die-on-term --emperor /etc/barbican/vassals --logto /var/log/barbican/barbican-api.log --stats localhost:9314
|
||||
end script
|
||||
|
@ -7,5 +7,5 @@ stop on runlevel [06]
|
||||
|
||||
#TODO(jwood) Parameterize the stats port address.
|
||||
script
|
||||
uwsgi --master --die-on-term --emperor /etc/barbican/vassals --logto /var/log/barbican/barbican-api.log --stats :9314
|
||||
uwsgi --master --die-on-term --emperor /etc/barbican/vassals --logto /var/log/barbican/barbican-api.log --stats localhost:9314
|
||||
end script
|
||||
|
Loading…
Reference in New Issue
Block a user