mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
wip: testing leaner docker strategy and deployment compose file (#719)
* 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
This commit is contained in:
parent
dae2805d27
commit
1f8520cdad
4 changed files with 18 additions and 11 deletions
|
@ -1,5 +1,10 @@
|
|||
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 {
|
||||
|
@ -7,7 +12,6 @@ server {
|
|||
}
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
proxy_pass http://api:3080;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue