mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
* nginx setup * chore(dev-images.yml): update workflow trigger to push events on main branch chore(dev-images.yml): remove building and pushing of librechat-dev-client image chore(nginx.conf): comment out SSL configuration in nginx.conf chore(deploy-compose.yml): uncomment api build configuration in deploy-compose.yml chore(deploy-compose.yml): update client build configuration in deploy-compose.yml
17 lines
278 B
Nginx Configuration File
17 lines
278 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
# listen 443 ssl;
|
|
|
|
# ssl_certificate /etc/nginx/ssl/nginx.crt;
|
|
# ssl_certificate_key /etc/nginx/ssl/nginx.key;
|
|
|
|
server_name localhost;
|
|
|
|
location /api {
|
|
proxy_pass http://api:3080/api;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://api:3080;
|
|
}
|
|
}
|