diff options
Diffstat (limited to 'config.php.example')
-rw-r--r-- | config.php.example | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/config.php.example b/config.php.example index d74e4b5..c792d6b 100644 --- a/config.php.example +++ b/config.php.example @@ -1,16 +1,15 @@ <?php - #Blaupload Config - #Modify this file with your details and copy it to config.php + # Blaupload configuration + # Modify this file per your required configuration and name it config.php - #The full URL used to access this directory - $url = "http://www.blaupload.co.uk"; + # The base URL used to access the index + $url = "http://mysite/"; - #The SHA256 hash of the password used to access the folder - #Set to null if you don't want the folder to be password protected + # The SHA-256 hash of the password used to access the index + # Set to null if you don't want the index to be password protected $pass = "ENTER PASSWORD HASH HERE"; - #A file to be shown at the top of the page - #For example, a HTML form to upload files - $headerfile = "upload.html" - + # A file to be included at the top of the page + # For example an HTML form to upload files + $headerfile = "upload.html"; ?> |