File size: 268 Bytes
3b6afc0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
events {
  worker_connections 1024;
}

http {
  server {
    listen 80;
    server_name localhost;

    location /api {
      proxy_pass http://api:3080/api;
    }

    location / {
      root /usr/share/nginx/html;
      try_files $uri $uri/ /index.html;
    }
  }
}