diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index 2f5d2c1..0000000 --- a/nginx.conf +++ /dev/null @@ -1,27 +0,0 @@ -worker_processes 1; - -events { - worker_connections 1024; -} - -http { - include /etc/nginx/mime.types; - default_type application/octet-stream; - - sendfile on; - keepalive_timeout 65; - - server { - listen 80; - server_name localhost; - - location / { - root /usr/share/nginx/html; - index index.html; - } - - location /api/ { - proxy_pass http://localhost:3001; - } - } -}