blob: b96c4b683550c991e8b84a019aad4cde9641744a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---------------------------------------------------------------------------------------
<VirtualHost 123.123.123.123>
ServerName gallery.yourdomain.org
DocumentRoot /data/pictures/
ErrorLog logs/gallery-error_log
TransferLog logs/gallery-access_log
PerlSetVar GalleryTemplateDir '%%PREFIX%%/share/Apache-Gallery/templates'
PerlSetVar GalleryInfo 'Picture Taken => DateTimeOriginal, Flash => Flash'
PerlSetVar GallerySizes '640 1024 1600 2272'
PerlSetVar GalleryThumbnailSize '100x75'
PerlSetVar GalleryCacheDir '/var/tmp/Apache-Gallery/'
<Location />
SetHandler perl-script
PerlHandler Apache::Gallery
</Location>
</VirtualHost>
And copy %%PREFIX%%/share/Apache-Gallery/css/gallery.css to your DocumentRoot
---------------------------------------------------------------------------------------
|