-
Notifications
You must be signed in to change notification settings - Fork 14
/
sample.ini
32 lines (23 loc) · 884 Bytes
/
sample.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# The DEFAULT section sets global defaults for a nextcloud-inotifyscan daemon.
[DEFAULT]
# interval: seconds until the next polling if no change is found; defaults to 1.
interval = 1
# Each non-DEFAULT section specifies info for a nextcloud instance; name of
# sections must be unique; otherwise only the last one will be used.
[Instance1]
# occ: path to the nextcloud occ script; in docker this is typically just "occ".
occ = occ
# user: the nextcloud users to watch changes for; comma separated.
user = some_nextcloud_user, alice, bob
# docker: username:container of the docker, or no.
docker = docker_foo:container_bar
# external_storage: whether to watch external storages. Defaults to no.
external_storage = yes
# php: PHP command to use, defaults to "php"
php = php
[Instance2]
interval = 0.2
occ = /path/to/nextcloud/occ
user = cindy
docker = no
php = /usr/bin/php8.0