fix config

This commit is contained in:
Christine Dodrill 2015-01-31 17:27:55 -08:00
parent 32d5ace20e
commit 41a30196d7
2 changed files with 3 additions and 1 deletions

View File

@ -3,4 +3,4 @@ config "development", ->
port 8080
config "docker", ->
port 5000
port os.getenv "PORT"

View File

@ -2,6 +2,8 @@ worker_processes ${{NUM_WORKERS}};
error_log stderr notice;
daemon off;
env PORT;
events {
worker_connections 1024;
}