aboutsummaryrefslogtreecommitdiff
path: root/config.default.pl
blob: 13566e996f81d5ddb3fc94e89b0e60552133501b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# always assume anything to do with files or directories is ran at project root

no warnings 'redefine';

use constant {

# If you're using lighttpd, set this to 1
# This disables SOCKET_FILE and lets the socket handling be externally managed
BARE_REQUEST           => 0,

IMMORTAL               => 1, # will continue handling request after death/error

LOG_FILE               => '/tmp/gorillanest.log',
DB_FILE                => 'gorillanest.sqlite3', # sqlite3

SOCKET_FILE            => '/tmp/gorillanest.socket',
SOCKET_MAX_CONNECTIONS => 100,

TEMPLATE_ROOT          => 'template', # template directory
GIT_ROOT               => 'git',      # git directory (~user/repo)

};

1;