aboutsummaryrefslogtreecommitdiffstats
path: root/www/p5-Apache-Gallery/pkg-message
blob: 9ec2a8c5a923c5c7dce2300a563fdaeb7bffd59f (plain) (blame)
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 '%%DATADIR%%/templates/default'
        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 %%DATADIR%%/templates/default/gallery.css to your DocumentRoot

---------------------------------------------------------------------------------------