mirror of
https://github.com/docker/docs.git
synced 2026-03-29 07:18:51 +07:00
18 lines
230 B
Nginx Configuration File
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;
|
|
}
|
|
}
|