mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
9 lines
476 B
PHP
9 lines
476 B
PHP
<?php
|
|
//This is the configuration file for Uguu Temp File Sharing system
|
|
define("CONFIG_ROOT_URL", "http://path.to.uguu");
|
|
define("CONFIG_FILES_PATH", "/path/to/uguu/public/files/");
|
|
define("CONFIG_ROOT_PATH", "/path/to/uguu/");
|
|
define("CONFIG_MAX_RETENTION_TIME", "60"); //Max retention time in minutes
|
|
define("CONFIG_RANDOM_LENGTH", "12");
|
|
define ("CONFIG_BLOCKED_EXTENSIONS", serialize(array("exe", "scr", "rar", "zip", "com", "vbs", "bat", "cmd", "html", "htm", "msi")));
|