Line # Revision Author
1 3 ahitrov@rambler.ru ##############################################################################
2 # $HeadURL$
3 # $Id$
4 ###############################################################################
5
6 # Main
7 PROJECT_NAME = @NAME@
8
9 # Database related
10 BASE_HOST = localhost
11 PGSQL_PORT = 5432
12 PGSQL_BASE = @NAME@
13 BASE_USER = @NAME@
14 BASE_PASSWD =
15
16 # Custom Apache handler
17 #DEFAULT_HANDLER = HTML::Mason::ApacheHandler
18
19 # sample how to add required modules to project
20 # PROJECT_REQUIRED += P-WebFetcher
21
22 # sample how to setup rsync for static data
23 # RSYNC_DIRS = i www/css
24 # RSYNC_SERVERS = sample.server.ru::rsync_key
25
26 # sample how to add more rewrite values
27 # URI = /news
28 # REWRITE += URI
29
30 # pregenerate static on demand
31 # PREGEN_GLOB = state
32 # PREGEN_LIST = www/css/*.css
33
34 ifeq (${DEVELOPMENT}, YES)
35
36 MIN_SPARE_SERVERS = 1
37 MAX_SPARE_SERVERS = 1
38 START_SERVERS = 1
39 MAX_CLIENTS = 1
40
41 # Mason caching off
42 MASON_CACHE_ENABLED = NO
43
44 else
45
46 #��������� ���� ��������� ������� �������� ��� ������� �� ����
47 MIN_SPARE_SERVERS = 1
48 MAX_SPARE_SERVERS = 1
49 START_SERVERS = 1
50 MAX_CLIENTS = 1
51
52 # Preload all stuff
53 # ������������ ����� ��� ������ (�������� ������ � syntax check ��� ������)
54 # PRELOADS = /components/*.msn /www/*.html /www/*/*.msn /www/*/*/*.msn /www/*/*.html
55
56 # �� ��������� ���������� ���� ��� ������
57 # STATIC_SOURCE_ENABLE = YES
58
59 endif
60