Initial commit

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
2023-12-06 22:23:52 +01:00
commit 9d162b257a
16 changed files with 241 additions and 0 deletions

View File

@ -0,0 +1,19 @@
client_body_temp_path /run/client_body;
proxy_temp_path /run/proxy_temp;
fastcgi_temp_path /run/fastcgi_temp;
scgi_temp_path /run/scgi_temp;
uwsgi_temp_path /run/uwsgi_temp;
server {
listen 3000;
root /app/code/static;
location /api/ {
proxy_pass http://127.0.0.1:8082;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
}