Skip to content

Commit

Permalink
fix: missing host references
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Oct 17, 2023
1 parent 7d1a3b4 commit 2692d34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .env.app.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The host address to bind to. Default is `0.0.0.0`
# HOST="0.0.0.0"
# The host address to bind to. Default is `::`
# HOST="::"
# The port to listen to for incoming requests. Default is `8091`
# PORT=8091
# The absolute path to the directory where all files will be stored. Default is `<path to your zui dir>/store`
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/env-vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This is the list of the supported environment variables:
- `SESSION_SECRET`: Used as secret for session. If not provided the default one is used
- `USE_SECURE_COOKIE`: Set the cookie [secure](https://github.com/expressjs/session#cookiesecure) option.
- `PORT`: The port to listen to for incoming requests. Default is `8091`
- `HOST`: The host address to bind to. Default is `0.0.0.0`
- `HOST`: The host address to bind to. Default is `::`
- `STORE_DIR`: The absolute path to the directory where all files will be stored. Default is `<path to your zui dir>/store`
- `BACKUPS_DIR`: The absolute path to the directory where all backups files will be stored. Default is `<path to your zui dir>/store/backups`
- `ZWAVEJS_EXTERNAL_CONFIG`: Mostly needed for docker users, it's the path to the folder used by Z-Wave JS to [store config database](https://zwave-js.github.io/node-zwave-js/#/usage/external-config?id=specifying-an-external-config-db-location), by default on docker it is `/usr/src/app/store/.config-db`. For users that are using a custom `STORE_DIR` this must be changed too.
Expand Down
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@
<v-text-field
v-model="newZwave.serverHost"
label="Server Host"
hint="(Optional) The host to bind the Z-Wave Server. Default is: 0.0.0.0"
hint="(Optional) The host to bind the Z-Wave Server. Default is: ::"
></v-text-field>
</v-col>
<v-col
Expand Down

0 comments on commit 2692d34

Please sign in to comment.