uguu/includes/config.template.php

20 lines
935 B
PHP
Raw Permalink Normal View History

2016-05-14 10:55:50 +02:00
<?php
2017-01-24 13:26:29 +01:00
//Site name
define("CONFIG_SITE_NAME", "Uguu");
//Site root URL
2016-05-14 11:30:07 +02:00
define("CONFIG_ROOT_URL", "http://path.to.uguu");
2016-05-14 22:30:21 +02:00
//Path to uploaded files
2016-05-14 11:30:07 +02:00
define("CONFIG_FILES_PATH", "/path/to/uguu/public/files/");
2016-05-15 17:12:21 +02:00
//Path to Uguu's files
2016-05-14 11:30:07 +02:00
define("CONFIG_ROOT_PATH", "/path/to/uguu/");
2016-05-15 17:12:21 +02:00
//Max retention time in minutes
define("CONFIG_MAX_RETENTION_TIME", "60");
//Max retention time as a text to be displayed
define("CONFIG_MAX_RETENTION_TEXT", "1 hour");
//Length of the random chain appended to the filename
define("CONFIG_RANDOM_LENGTH", "12");
//This is the list of blocked extensions, you can remove extensions or add to this list as you like
define ("CONFIG_BLOCKED_EXTENSIONS", serialize(array("exe", "scr", "rar", "zip", "com", "vbs", "bat", "cmd", "html", "htm", "msi", "php", "php5")));
2016-05-15 17:12:21 +02:00
//https://wiki.gentoo.org/wiki/Handbook to set this string correctly, or just ignore it
2016-05-14 22:53:24 +02:00
define("VERYLO_NG_STRING_THATDOESNTREALLYD_O_ANYTHING", "ok");