summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2022-03-12 03:33:00 +0000
committerYaco <franco@reevo.org>2022-03-12 03:33:00 +0000
commit29e9f0bc645d8534e06df9c2092bef49a59bb993 (patch)
tree9ee9daac07ed20a30e643c00c2e8582517c26a7d /conf
adds crowdfunding test code
Diffstat (limited to 'conf')
-rw-r--r--conf/acl.auth.php21
-rw-r--r--conf/acl.auth.php.save21
-rw-r--r--conf/local.php8
l---------conf/plugin1
-rw-r--r--conf/plugins.local.php8
l---------conf/users.auth.php1
6 files changed, 60 insertions, 0 deletions
diff --git a/conf/acl.auth.php b/conf/acl.auth.php
new file mode 100644
index 0000000..c70af78
--- /dev/null
+++ b/conf/acl.auth.php
@@ -0,0 +1,21 @@
+# acl.auth.php
+# <?php exit()?>
+# Don't modify the lines above
+#
+# Access Control Lists
+#
+# Editing this file by hand shouldn't be necessary. Use the ACL
+# Manager interface instead.
+#
+# If your auth backend allows special char like spaces in groups
+# or user names you need to urlencode them (only chars <128, leave
+# UTF-8 multibyte chars as is)
+#
+# none 0
+# read 1
+# edit 2
+# create 4
+# upload 8
+# delete 16
+
+* @ALL 1
diff --git a/conf/acl.auth.php.save b/conf/acl.auth.php.save
new file mode 100644
index 0000000..c70af78
--- /dev/null
+++ b/conf/acl.auth.php.save
@@ -0,0 +1,21 @@
+# acl.auth.php
+# <?php exit()?>
+# Don't modify the lines above
+#
+# Access Control Lists
+#
+# Editing this file by hand shouldn't be necessary. Use the ACL
+# Manager interface instead.
+#
+# If your auth backend allows special char like spaces in groups
+# or user names you need to urlencode them (only chars <128, leave
+# UTF-8 multibyte chars as is)
+#
+# none 0
+# read 1
+# edit 2
+# create 4
+# upload 8
+# delete 16
+
+* @ALL 1
diff --git a/conf/local.php b/conf/local.php
new file mode 100644
index 0000000..bb9a203
--- /dev/null
+++ b/conf/local.php
@@ -0,0 +1,8 @@
+<?php
+/**
+ * Minimal local config
+ */
+$conf['useacl'] = 1;
+$conf['superuser'] = '@admin';
+
+$conf['title'] = 'Gustavo Esteva';
diff --git a/conf/plugin b/conf/plugin
new file mode 120000
index 0000000..e23e968
--- /dev/null
+++ b/conf/plugin
@@ -0,0 +1 @@
+../../../platform/www/conf/plugin/ \ No newline at end of file
diff --git a/conf/plugins.local.php b/conf/plugins.local.php
new file mode 100644
index 0000000..4f256a9
--- /dev/null
+++ b/conf/plugins.local.php
@@ -0,0 +1,8 @@
+<?php
+/*
+ * Local plugin enable/disable settings
+ * Auto-generated through plugin/extension manager
+ *
+ * NOTE: Plugins will not be added to this file unless there is a need to override a default setting. Plugins are
+ * enabled by default.
+ */
diff --git a/conf/users.auth.php b/conf/users.auth.php
new file mode 120000
index 0000000..648705f
--- /dev/null
+++ b/conf/users.auth.php
@@ -0,0 +1 @@
+../../../platform/www/conf/users.auth.php \ No newline at end of file