2022-01-08 16:22:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Basic Settings
|
|
|
|
|
2022-01-10 17:11:45 +00:00
|
|
|
// Gallery Title
|
2022-01-12 06:30:06 +00:00
|
|
|
$conf['gallery_name'] = '<i class="fa fa-home"></i>';
|
2022-01-08 16:22:16 +00:00
|
|
|
// Full Filesystem Path to the Base Image Directory
|
2022-02-02 17:49:48 +00:00
|
|
|
$conf['fs_imagedir'] = '/data/images';
|
2022-01-08 16:22:16 +00:00
|
|
|
// Full Filesystem Path to the Thumbnails Storage Directory
|
2022-02-02 17:49:48 +00:00
|
|
|
$conf['fs_thumbdir'] = '/var/cache/gallery/';
|
2022-01-08 16:22:16 +00:00
|
|
|
// 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
|
2022-01-11 16:19:02 +00:00
|
|
|
$conf['defdir'] = '';
|
2022-01-08 16:22:16 +00:00
|
|
|
|
2022-02-02 17:49:48 +00:00
|
|
|
?>
|