mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-06 15:45:56 +02:00
Claudify
This commit is contained in:
@@ -45,23 +45,50 @@ The installation of this add-on is pretty straightforward and not different in c
|
|||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
---
|
Webui can be found at <http://homeassistant:PORT> or through the sidebar using Ingress.
|
||||||
|
Configurations can be done through the app webUI, except for the following options.
|
||||||
|
|
||||||
Webui can be found at <http://homeassistant:PORT>.
|
### Options
|
||||||
The default username/password : described in the startup log.
|
|
||||||
Configurations can be done through the app webUI, except for the following options
|
| Option | Type | Default | Description |
|
||||||
|
|--------|------|---------|-------------|
|
||||||
|
| `PGID` | int | `0` | Group ID for file permissions |
|
||||||
|
| `PUID` | int | `0` | User ID for file permissions |
|
||||||
|
| `TZ` | str | | Timezone (e.g., `Europe/London`) |
|
||||||
|
| `connection_mode` | list | `ingress_noauth` | Connection mode (ingress_noauth/noingress_auth/ingress_auth) |
|
||||||
|
| `localdisks` | str | | Local drives to mount (e.g., `sda1,sdb1,MYNAS`) |
|
||||||
|
| `networkdisks` | str | | SMB shares to mount (e.g., `//SERVER/SHARE`) |
|
||||||
|
| `cifsusername` | str | | SMB username for network shares |
|
||||||
|
| `cifspassword` | str | | SMB password for network shares |
|
||||||
|
| `cifsdomain` | str | | SMB domain for network shares |
|
||||||
|
|
||||||
|
### Connection Modes
|
||||||
|
|
||||||
|
- `ingress_noauth` - Default, disables authentication for seamless ingress integration
|
||||||
|
- `noingress_auth` - Disables ingress for external URL, enables authentication
|
||||||
|
- `ingress_auth` - Enables both ingress and authentication
|
||||||
|
|
||||||
|
### Example Configuration
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
PGID: user
|
PGID: 0
|
||||||
GPID: user
|
PUID: 0
|
||||||
TZ: timezone
|
TZ: "Europe/London"
|
||||||
localdisks: sda1 #put the hardware name of your drive to mount separated by commas, or its label. ex. sda1, sdb1, MYNAS...
|
connection_mode: "ingress_noauth"
|
||||||
networkdisks: "//SERVER/SHARE" # optional, list of smb servers to mount, separated by commas
|
localdisks: "sda1,sdb1"
|
||||||
cifsusername: "username" # optional, smb username, same for all smb shares
|
networkdisks: "//192.168.1.100/downloads,//nas.local/tv"
|
||||||
cifspassword: "password" # optional, smb password
|
cifsusername: "mediauser"
|
||||||
connection_mode: ingress_noauth (default, disables authentification to allow a seamless ingress integration), noingress_auth (disables ingress to allow a simpler external url, enables authentification), ingress_auth (enables both ingress and authentification)
|
cifspassword: "password123"
|
||||||
|
cifsdomain: "workgroup"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Mounting Drives
|
||||||
|
|
||||||
|
This addon supports mounting both local drives and remote SMB shares:
|
||||||
|
|
||||||
|
- **Local drives**: See [Mounting Local Drives in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Mounting-Local-Drives-in-Addons)
|
||||||
|
- **Remote shares**: See [Mounting Remote Shares in Addons](https://github.com/alexbelgium/hassio-addons/wiki/Mounting-remote-shares-in-Addons)
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
Create an issue on github
|
Create an issue on github
|
||||||
|
|||||||
Reference in New Issue
Block a user