]> jfr.im git - uguu.git/blob - includes/config.template.php
4178ee2a338687e98ab60f3dabf5e651d1596b18
[uguu.git] / includes / config.template.php
1 <?php
2 //This is the configuration file for Uguu Temp File Sharing system
3 define("CONFIG_ROOT_URL", "http://path.to.uguu");
4 define("CONFIG_FILES_PATH", "/path/to/uguu/public/files/");
5 define("CONFIG_ROOT_PATH", "/path/to/uguu/");
6 define("CONFIG_MAX_RETENTION_TIME", "60"); //Max retention time in minutes
7 define("CONFIG_MAX_RETENTION_TEXT", "1 hour"); //Max retention time as a text to be displayed
8 define("CONFIG_RANDOM_LENGTH", "12"); //Length of the random chain appended to the filename
9 define ("CONFIG_BLOCKED_EXTENSIONS", serialize(array("exe", "scr", "rar", "zip", "com", "vbs", "bat", "cmd", "html", "htm", "msi")));