diff --git a/frontend/conf/nginx.conf b/frontend/conf/nginx.conf deleted file mode 100644 index 0e66c15..0000000 --- a/frontend/conf/nginx.conf +++ /dev/null @@ -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/; - } - } -} \ No newline at end of file