fix config
This commit is contained in:
parent
32d5ace20e
commit
41a30196d7
|
@ -3,4 +3,4 @@ config "development", ->
|
||||||
port 8080
|
port 8080
|
||||||
|
|
||||||
config "docker", ->
|
config "docker", ->
|
||||||
port 5000
|
port os.getenv "PORT"
|
||||||
|
|
|
@ -2,6 +2,8 @@ worker_processes ${{NUM_WORKERS}};
|
||||||
error_log stderr notice;
|
error_log stderr notice;
|
||||||
daemon off;
|
daemon off;
|
||||||
|
|
||||||
|
env PORT;
|
||||||
|
|
||||||
events {
|
events {
|
||||||
worker_connections 1024;
|
worker_connections 1024;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue