LibreChat/client/nginx.conf

16 lines
249 B
Nginx Configuration File
Raw Normal View History

2023-03-06 15:56:25 -05:00
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;
}
}