Remove nginx setting

This commit is contained in:
Hyunggyu Jang 2023-03-21 12:41:15 +09:00
parent c233cc0d5c
commit 36f3d37ecc
3 changed files with 0 additions and 39 deletions

View file

@ -1,15 +0,0 @@
server {
listen 80;
server_name localhost;
location / {
# Serve your React app
root /usr/share/nginx/html;
index index.html;
}
location /api {
# Proxy requests to the API service
proxy_pass http://api:3080/api;
}
}