diff options
author | Fbenas <philbeansburton@gmail.com> | 2017-08-25 01:47:18 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2017-08-25 01:47:18 +0100 |
commit | 903b671e7d6cc1c289be5dc7f356a9e5fb98dbf7 (patch) | |
tree | 005a8c4d9750fc4fe42667c166d000e20ecf21d2 /config | |
parent | d082907cb71f568da01e1f22a2c4eab1e3ced7aa (diff) |
Add config and config loader and remove requirement of trailing slashes in config values
Diffstat (limited to 'config')
-rw-r--r-- | config/dipper.php.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/dipper.php.example b/config/dipper.php.example new file mode 100644 index 0000000..d43ea42 --- /dev/null +++ b/config/dipper.php.example @@ -0,0 +1,9 @@ +<?php + + // This is how you configure dipper for your system + // Each directory below must exists + // Each directory much end with a slash + return [ + "CONFIG_ROOT" => "/path/to/directory", // The directory where we write the nginx.conf partial + "SITES_ROOT" => "/path/to/directory", // The directory where we write the website file and directory structure + ]; |