@@ -36,24 +36,26 @@ BROWSER_MODEL=
36
36
# Requires installation of free self-hosted Meilisearch or Paid Remote Plan (Remote not tested)
37
37
# The easiest setup for this is through docker-compose, which takes care of it for you.
38
38
# SEARCH=TRUE
39
- SEARCH =
39
+ SEARCH = TRUE
40
40
41
41
# REQUIRED FOR SEARCH: MeiliSearch Host, mainly for api server to connect to the search server.
42
42
# must replace '0.0.0.0' with 'meilisearch' if serving meilisearch with docker-compose
43
- # MEILI_HOST='http://0.0.0.0:7700'
44
- MEILI_HOST = ' http://meilisearch:7700'
43
+ # MEILI_HOST='http://0.0.0.0:7700' # <-- local/remote
44
+ MEILI_HOST = 'http://meilisearch:7700' # <-- docker-compose
45
45
46
46
# REQUIRED FOR SEARCH: MeiliSearch HTTP Address, mainly for docker-compose to expose the search server.
47
47
# must replace '0.0.0.0' with 'meilisearch' if serving meilisearch with docker-compose
48
- # MEILI_HTTP_ADDR='0.0.0.0:7700'
49
- MEILI_HTTP_ADDR = ' meilisearch:7700'
48
+ # MEILI_HTTP_ADDR='0.0.0.0:7700' # <-- local/remote
49
+ MEILI_HTTP_ADDR = 'meilisearch:7700' # <-- docker-compose
50
50
51
51
# REQUIRED FOR SEARCH: In production env., needs a secure key, feel free to generate your own.
52
52
# This master key must be at least 16 bytes, composed of valid UTF-8 characters.
53
53
# Meilisearch will throw an error and refuse to launch if no master key is provided or if it is under 16 bytes,
54
54
# Meilisearch will suggest a secure autogenerated master key.
55
55
# Using docker, it seems recognized as production so use a secure key.
56
- MEILI_MASTER_KEY = JKMW-hGc7v_D1FkJVdbRSDNFLZcUv3S75yrxXP0SmcU
56
+ # MEILI_MASTER_KEY= # <-- no/insecure key for local/remote
57
+ MEILI_MASTER_KEY = JKMW-hGc7v_D1FkJVdbRSDNFLZcUv3S75yrxXP0SmcU # <-- ready made secure key for docker-compose
58
+
57
59
58
60
# User System
59
61
# global enable/disable the sample user system.
0 commit comments