Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
location /v1 {
|
||||
proxy_pass http://backend:80;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://frontend:80;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user