]> git.p6c8.net - jirafeau.git/blobdiff - lib/config.original.php
Add more details about upload error
[jirafeau.git] / lib / config.original.php
index 365b5aae5795229fae33c333f3a5c837c83c4e8d..51364d06e7ddeb272b9581bba0eb670863638c10 100644 (file)
@@ -95,6 +95,7 @@ $cfg['upload_ip_nopassword'] = array();
 /* Password for the admin interface.
  * An empty password will disable password authentication.
  * The password is a sha256 hash of the original version.
+ * Example: echo -n "myVerySecretAdminPassword" | sha256sum
  */
 $cfg['admin_password'] = '';
 
@@ -183,6 +184,16 @@ $cfg['file_hash'] = 'md5';
  */
 $cfg['litespeed_workaround'] = false;
 
+/* Use the X-Sendfile header which should cause your webserver to handle
+ * the sending of the file. The webserver must be configured to do this
+ * using the mod_xsendfile module in Apache or the appropriate config in
+ * lighttpd. The offload will not happen in the case of server-side encrypted
+ * files, but all other cases should work. Benefits include being able
+ * to resume downloads and seek instantly in media players like VLC or
+ * the Firefox/Discord/Chrome embedded player.
+ */
+$cfg['use_xsendfile'] = false;
+
 /* Store uploader's IP along with 'link' file.
  * Depending of your legislation, you may have to adjust this parameter.
  */

patrick-canterino.de