Initial Commit

This commit is contained in:
Domingo Dirutigliano
2022-06-11 21:57:50 +02:00
committed by DomySh
commit 372ade7d6f
43 changed files with 30381 additions and 0 deletions

27
backend/nginx.conf Executable file
View File

@@ -0,0 +1,27 @@
worker_processes 5; ## Default: 1
pid /var/run/nginx.pid;
user nobody nobody;
events {
worker_connections 1024;
}
http{
server {
listen 80;
server_name _;
location / {
include proxy_params;
proxy_pass http://frontend:5000/;
}
location /api/ {
include proxy_params;
proxy_pass http://127.0.0.1:8080/;
}
}
}