Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-12-10 04:08:33 +0300
committernachoparker <nacho@ownyourbits.com>2019-01-05 04:14:52 +0300
commitd5c1f0058b43c22ebb132f51df0ea144fbd927ec (patch)
treeb826d4fefb22afc2513a57e9464a486b9fd24dcc /etc/ncp-config.d/NFS.cfg
parent21fee19452410817d26b6caebd0a91b5968b0a44 (diff)
rework to use JSON based cfg and more
Diffstat (limited to 'etc/ncp-config.d/NFS.cfg')
-rw-r--r--etc/ncp-config.d/NFS.cfg36
1 files changed, 36 insertions, 0 deletions
diff --git a/etc/ncp-config.d/NFS.cfg b/etc/ncp-config.d/NFS.cfg
new file mode 100644
index 00000000..38298e74
--- /dev/null
+++ b/etc/ncp-config.d/NFS.cfg
@@ -0,0 +1,36 @@
+{
+ "id": "NFS",
+ "name": "NFS",
+ "title": "NFS",
+ "description": "NFS network file system server (for Linux LAN)",
+ "info": "If we intend to modify the data folder through NFS,\nthen we have to synchronize NextCloud to make it aware of the changes.\n\nThis can be done manually or automatically using 'nc-scan' and 'nc-scan-auto'",
+ "infotitle": "Instructions for external synchronization",
+ "params": [
+ {
+ "id": "ACTIVE",
+ "name": "ACTIVE",
+ "value": "no",
+ "type": "bool"
+ },
+ {
+ "id": "DIR",
+ "name": "DIR",
+ "value": "/media/USBdrive/ncdata/admin/files"
+ },
+ {
+ "id": "SUBNET",
+ "name": "SUBNET",
+ "value": "192.168.1.0/24"
+ },
+ {
+ "id": "USER",
+ "name": "USER",
+ "value": "www-data"
+ },
+ {
+ "id": "GROUP",
+ "name": "GROUP",
+ "value": "www-data"
+ }
+ ]
+}