Files
docker-docs/_data/docsarchive/docs-base/nginx.conf
John Mulhausen 161fb51b1c Update nginx.conf
2017-02-09 18:28:28 -08:00

18 lines
230 B
Nginx Configuration File

worker_processes 1;
daemon off;
events {
worker_connections 1024;
}
http {
server {
root /usr/src/app/target;
port_in_redirect off;
location / {
include /etc/nginx/mime.types;
}
listen 4000;
}
}