diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2014-09-21 12:10:44 +0100 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2014-09-21 12:10:44 +0100 |
commit | ce4dcd942953471e8ba3413c019eedc9c557042d (patch) | |
tree | 60655c7bfe5f7c71adf2c8e6300191946ee1597f /config.php.example | |
parent | f5eba39fa959eeb13e0b5155af85159ceca3e872 (diff) |
Change formatting in example configuration
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"; ?> |