aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'config.php')
-rw-r--r--config.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/config.php b/config.php
deleted file mode 100644
index b1f1244..0000000
--- a/config.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-return [
- 'domain' => 'example.com',
- 'cookie_host' => '.example.com',
- 'admin_email' => 'admin@example.com',
-
- 'db' => [
- 'type' => 'mysql',
- 'host' => '127.0.0.1',
- 'user' => '',
- 'password' => '',
- 'database' => '',
- ],
-
- 'log_file' => '/var/log/example.com-backend.log',
-
- 'password_salt' => '12345',
- 'csrf_token' => '12345',
- 'uploads_dir' => '/home/user/files.example.com',
- 'uploads_host' => 'files.example.com',
-
- 'dirs_mode' => 0775,
- 'files_mode' => 0664,
- 'group' => 33, // id -g www-data
- 'is_dev' => false,
-];