vsgallery/conf/config.sample.php

28 lines
753 B
PHP
Raw Normal View History

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
$conf['fs_imagedir'] = '/data/images';
2022-01-08 16:22:16 +00:00
// Full Filesystem Path to the Thumbnails Storage Directory
$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
?>