diff options
Diffstat (limited to 'config.php')
| -rw-r--r-- | config.php | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/config.php b/config.php new file mode 100644 index 0000000..1557b65 --- /dev/null +++ b/config.php @@ -0,0 +1,21 @@ +<?php +  # Blaupload configuration +  # Modify this file per your required configuration and name it config.php + +  # The base URL used to access the index +  $url = "http://dev.fbeans.of.je/"; + +  # 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 = null; + +  # The page title used on the logon page, (only displayed if a password is set above) +  $logontitle = "Alice's private uploader"; + +  # A file to be included at the top of the page +  # For example an HTML form to upload files +  $headerfile = "upload.html"; + +  # An array of filenames to omit from the index +  $indexignore = array(".htaccess", "config.php", "index.php", "upload_file.php", "upload.html"); +?> | 
