forked from walterhiggins/pixenate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
executable file
·57 lines (50 loc) · 1.7 KB
/
config.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
$CONFIG = {
DEBUG => 1,
#
# Location of the log file. This should be in a folder which is
# not web-accessible.
#
LOG_DIR => "./log/",
#
# Location of the cache directory where working image files are stored
# (files are deleted after a period of time)
# N.B. This MUST be a path relative to where PXN8 has been installed.
# The path must also be web-accessible !
#
CACHE_DIR => "cache",
#
# specify a time interval (in seconds) after which
# a visitors temporary files will be deleted.
# (hint: this should be longer than the value specified for
# session timeout)
DELETE_TEMPS_AFTER => 60 * 60 * 4,
#
# specify the maximum size (in bytes) for file uploading
# e.g. 1048576 is 1MB
#
CGI_POST_MAX => 1048576 * 4,
#
# specify the quality of images sent back to the client
# (a 100% uncompressed version is always used on the server)
# Quality is expressed as a value between 1 (low quality) and 100 (high quality).
# 85% quality results in a more bandwidth-friendly file size with no noticeable
# degradation.
# 75% quality results in even smaller file-sizes but some noticeable degradation.
#
JPEG_QUALITY => 85,
#
# flickr secret and
# flickr apikey are both parameters required
# to use the flickr API.
# If you plan on deploying this on any server other
# than http://pxn8.com then you should apply for your
# own secret and api key at http://flickr.com/services/api/
#
FLICKR_SECRET => "",
FLICKR_APIKEY => "",
#
# Location where Pixenate plugins should be loaded from
# (relative to PIXENATE_WORKING_DIRECTORY)
#
PLUGIN_DIR => "lib/Sxoop/PXN8/plugins" ,
};