You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web/docs/getting-started/config.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ You can configure the LLMStack installation by editing the `.env` file in the ro
15
15
|`WEAVIATE_VOLUME`| Path to the directory where the weaviate data will be stored. By default, data is stored in `/tmp` which is ephemeral. Make sure to change this to a persistent directory if you want to persist the data. |`/tmp/weaviate_llmstack`|
16
16
|`LLMSTACK_PORT`| Port on which the LLMStack web server will listen. |`3000`|
17
17
|`LOG_LEVEL`| Log level for the LLMStack web server. |`ERROR`|
18
+
|`ALLOWED_HOSTS`| Comma separated list of allowed hosts for the LLMStack API server server. |`localhost`|
Copy file name to clipboardExpand all lines: web/docs/getting-started/intro.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,10 @@ LLMStack comes with a default admin account whose credentials are `admin` and `p
45
45
loop
46
46
/>
47
47
48
+
:::note
49
+
If you are deploying LLMStack on a server, make sure to update `ALLOWED_HOSTS` in `.env` file to include the hostname of your server. Refer to the [configuration](config.md) section for more information.
50
+
:::
51
+
48
52
Instead of downloading the release, you can also clone the repository and run the above commands in the cloned repository.
0 commit comments