remove unused nginx config

This commit is contained in:
agatha 2024-04-12 13:22:12 -04:00
parent d1a6b17920
commit d789f9eafd

View File

@ -1,22 +0,0 @@
events {
worker_connections 1024;
}
http {
server {
listen 8000 default_server;
listen [::]:8000 default_server;
root /app;
index index.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location /api {
proxy_pass http://backend:8000/;
}
}
}