mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
15 lines
249 B
Nginx Configuration File
15 lines
249 B
Nginx Configuration File
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;
|
|
}
|
|
}
|