vsgallery/conf/config.php
2022-01-08 17:22:16 +01:00

25 lines
709 B
PHP

<?php
// Basic Settings
// Full Filesystem Path to the Base Image Directory
$conf['fs_imagedir'] = '/data0/Private/Pictures/Gallery';
// Full Filesystem Path to the Thumbnails Storage Directory
$conf['fs_thumbdir'] = '/var/cache/gallery/thumbs';
// Base URL for the Images Directory
$conf['web_imagedir'] = '/images';
// Base URL for the Thumbnails Directory
$conf['web_thumbdir'] = '/thumbs';
// Lifetime Filelist Cache (Filelist will be Re-Read from Disc after this time)
$conf['flcache'] = 3600;
// Defaults
// Start on this Page if none given
$conf['defpage'] = 1;
// Images per Page if not specified
$conf['defslice'] = 34;
// Default Subdirectory if none given
$conf['defdir'] = 'r34';
?>