]> git.sesse.net Git - webpdf/blob - config.pm
Move the ���show_last��� parameter part of config.pm.
[webpdf] / config.pm
1 package pdfweb::config;
2
3 # The home directory of the user going to be running the CGI scripts.
4 # (Required if OOo is to find its configuration files etc.)
5 our $homedir = "/home/cassarossa/itk/sesse/sesse-pdf/";
6
7 # Display of a running X server (OOo needs one to work -- Xvfb will do nicely).
8 our $xserver = ":25";
9
10 # Directory for PDF output.
11 our $outputdir = "/home/cassarossa/itk/sesse/public_html/pdf/output";
12
13 # How many thumbnails to show in the “last uploaded” page.
14 our $show_last = 20;
15
16 1;