Docker: single container compose

This commit is contained in:
DomySh
2022-06-12 20:02:05 +02:00
parent 088d1e406a
commit 67e5014d78
47 changed files with 32 additions and 292 deletions

28
firewall/config/nginx.conf Executable file
View File

@@ -0,0 +1,28 @@
worker_processes 5; ## Default: 1
pid /var/run/nginx.pid;
user nobody nogroup;
events {
worker_connections 1024;
}
http{
server {
listen ${NGINX_PORT};
server_name _;
root /execute/frontend/;
location / {
try_files $uri /index.html;
}
location /api/ {
include proxy_params;
proxy_pass http://127.0.0.1:8080;
}
}
}