[deployment] Added portforwarding for application

This commit is contained in:
Peter Lomakin 2013-09-25 18:00:54 +04:00
parent a7a94d30e9
commit 6137e76393
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,3 @@
webui: gunicorn --error-logfile - --log-level info ostack_validator.webui:app
webui: gunicorn --error-logfile - --log-level info ostack_validator.webui:app --bind 0.0.0.0:8000
worker: celery worker --app=ostack_validator.celery:app

1
Vagrantfile vendored
View File

@ -8,6 +8,7 @@ Vagrant::Config.run do |config|
# config.vm.forward_port 80, 8080
config.vm.forward_port 5000, 5000
config.vm.forward_port 8000, 8000
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["vagrant/cookbooks"]