Skip to content

Commit 4a325db

Browse files
authored
remove 'MEILI_HTTP_ADDR' (danny-avila#1475)
1 parent b72452f commit 4a325db

File tree

9 files changed

+0
-18
lines changed

9 files changed

+0
-18
lines changed

.devcontainer/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ services:
5757
# ports:
5858
# - 7700:7700 # if exposing these ports, make sure your master key is not the default value
5959
environment:
60-
- MEILI_HTTP_ADDR=meilisearch:7700
6160
- MEILI_NO_ANALYTICS=true
6261
- MEILI_MASTER_KEY=5c71cf56d672d009e36070b5bc5e47b743535ae55c818ae3b735bb6ebfb4ba63
6362
volumes:

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ ZAPIER_NLA_API_KEY=
177177
SEARCH=true
178178
MEILI_NO_ANALYTICS=true
179179
MEILI_HOST=http://0.0.0.0:7700
180-
MEILI_HTTP_ADDR=0.0.0.0:7700
181180
MEILI_MASTER_KEY=DrhYf7zENyR6AlUCKmnz0eYASOQdl6zxH7s7MKFSfFCt
182181

183182
#===================================================#

deploy-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ services:
2121
- NODE_ENV=production
2222
- MONGO_URI=mongodb://mongodb:27017/LibreChat
2323
- MEILI_HOST=http://meilisearch:7700
24-
- MEILI_HTTP_ADDR=meilisearch:7700
2524
volumes:
2625
- ./images:/app/client/public/images
2726
client:
@@ -56,7 +55,6 @@ services:
5655
- .env
5756
environment:
5857
- MEILI_HOST=http://meilisearch:7700
59-
- MEILI_HTTP_ADDR=meilisearch:7700
6058
- MEILI_NO_ANALYTICS=true
6159
volumes:
6260
- ./meili_data:/meili_data

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ services:
2424
- HOST=0.0.0.0
2525
- MONGO_URI=mongodb://mongodb:27017/LibreChat
2626
- MEILI_HOST=http://meilisearch:7700
27-
- MEILI_HTTP_ADDR=meilisearch:7700
2827
volumes:
2928
- /app/client/node_modules
3029
- /app/api/node_modules
@@ -50,7 +49,6 @@ services:
5049
user: "${UID}:${GID}"
5150
environment:
5251
- MEILI_HOST=http://meilisearch:7700
53-
- MEILI_HTTP_ADDR=meilisearch:7700
5452
- MEILI_NO_ANALYTICS=true
5553
volumes:
5654
- ./meili_data_v1.5:/meili_data

docs/deployment/hetzner_ubuntu.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ HOST=<yourserverip>
125125
```
126126
SEARCH=true
127127
MEILI_HOST=meilisearch
128-
MEILI_HTTP_ADDR=meilisearch
129128
```
130129

131130
### 5. After everything file has been updated, run `docker-compose build` then `docker-compose up`

docs/dev/deploy-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ services:
1616
- HOST=0.0.0.0
1717
- MONGO_URI=mongodb://mongodb:27017/LibreChat
1818
- MEILI_HOST=http://meilisearch:7700
19-
- MEILI_HTTP_ADDR=meilisearch:7700
2019
client:
2120
image: client
2221
ports:
@@ -43,7 +42,6 @@ services:
4342
- .env
4443
environment:
4544
- MEILI_HOST=http://meilisearch:7700
46-
- MEILI_HTTP_ADDR=meilisearch:7700
4745
- MEILI_NO_ANALYTICS=true
4846
volumes:
4947
- ./meili_data:/meili_data

docs/install/configuration/dotenv.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -467,12 +467,6 @@ For the API server to connect to the search server. Replace '0.0.0.0' with 'meil
467467
MEILI_HOST=http://0.0.0.0:7700
468468
```
469469

470-
MeiliSearch HTTP Address, mainly for docker-compose to expose the search server. Replace '0.0.0.0' with 'meilisearch' if serving MeiliSearch with docker-compose.
471-
472-
```bash
473-
MEILI_HTTP_ADDR=0.0.0.0:7700
474-
```
475-
476470
This master key must be at least 16 bytes, composed of valid UTF-8 characters. MeiliSearch will throw an error and refuse to launch if no master key is provided or if it is under 16 bytes. MeiliSearch will suggest a secure autogenerated master key. This is a ready made secure key for docker-compose, you can replace it with your own.
477471

478472
```bash

docs/install/installation/container_install.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ Follow [this guide](../configuration/ai_setup.md) to populate the containers wit
5555
HOST=0.0.0.0
5656
MONGO_URI=mongodb://librechat-mongodb:27017/LibreChat
5757
MEILI_HOST=http://librechat-meilisearch:7700
58-
MEILI_HTTP_ADDR=librechat-meilisearch:7700
5958
MEILI_NO_ANALYTICS=true
6059
```
6160

docs/install/installation/docker_compose_install.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,11 @@ For more info see:
107107
- MONGO_URI=mongodb://mongodb:27017/LibreChat
108108
# ...
109109
- MEILI_HOST=http://meilisearch:7700
110-
- MEILI_HTTP_ADDR=meilisearch:7700
111110
# ...
112111
env_file:
113112
- .env
114113
environment:
115114
- MEILI_HOST=http://meilisearch:7700
116-
- MEILI_HTTP_ADDR=meilisearch:7700
117115
```
118116
119117
- If for some reason you're not able to build the app image, you can pull the latest image from **Dockerhub**.

0 commit comments

Comments
 (0)