LibreChat/client/nginx.conf

16 lines
265 B
Nginx Configuration File
Raw Permalink Normal View History

2023-03-06 15:56:25 -05:00
server {
listen 80;
server_name localhost;
location /api {
# Proxy requests to the API service
proxy_pass http://api:3080/api;
}
2023-03-29 16:11:43 +08:00
location / {
# Serve your React app
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
2023-03-06 15:56:25 -05:00
}