zkt26/sk1/nginx.conf

15 lines
125 B
Nginx Configuration File

events {}
http {
server {
listen 80;
location / {
proxy_pass http://app:3000;
}
}
}