remove: will's crap

This commit is contained in:
Didier Slof 2023-02-12 22:33:04 +01:00
parent c4f5818bd0
commit f6c7158f09
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 0 additions and 34 deletions

View file

@ -1,3 +0,0 @@
FROM nginx:latest
COPY nginx.conf /etc/nginx/nginx.conf

View file

@ -1,31 +0,0 @@
user www-data;
events {
worker_connections 768;
}
http {
upstream app {
server app:3000;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
gzip on;
gzip_disable "msie6";
server {
listen 80;
try_files $uri/index.html $uri @app;
location / {
proxy_pass http://app;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
}
client_max_body_size 10M;
keepalive_timeout 10;
}
}