Initial commit

This commit is contained in:
2022-05-18 18:14:36 +01:00
commit a32d668ebd
12 changed files with 334 additions and 0 deletions
+17
View File
@@ -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;
}
}
}