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 |
66 |
ahitrov@rambler.ru |
# PROJECT_REQUIRED += MIME-Lite |
22 |
3 |
ahitrov@rambler.ru |
|
23 |
|
|
# sample how to setup rsync for static data |
24 |
|
|
# RSYNC_DIRS = i www/css |
25 |
|
|
# RSYNC_SERVERS = sample.server.ru::rsync_key |
26 |
|
|
|
27 |
|
|
# sample how to add more rewrite values |
28 |
|
|
# URI = /news |
29 |
|
|
# REWRITE += URI |
30 |
|
|
|
31 |
|
|
# pregenerate static on demand |
32 |
|
|
# PREGEN_GLOB = state |
33 |
|
|
# PREGEN_LIST = www/css/*.css |
34 |
|
|
|
35 |
|
|
ifeq (${DEVELOPMENT}, YES) |
36 |
|
|
|
37 |
|
|
MIN_SPARE_SERVERS = 1 |
38 |
|
|
MAX_SPARE_SERVERS = 1 |
39 |
|
|
START_SERVERS = 1 |
40 |
|
|
MAX_CLIENTS = 1 |
41 |
|
|
|
42 |
|
|
# Mason caching off |
43 |
|
|
MASON_CACHE_ENABLED = NO |
44 |
|
|
|
45 |
|
|
else |
46 |
|
|
|
47 |
|
|
#��������� ���� ��������� ������� �������� ��� ������� �� ���� |
48 |
|
|
MIN_SPARE_SERVERS = 1 |
49 |
|
|
MAX_SPARE_SERVERS = 1 |
50 |
|
|
START_SERVERS = 1 |
51 |
|
|
MAX_CLIENTS = 1 |
52 |
|
|
|
53 |
|
|
# Preload all stuff |
54 |
|
|
# ������������ ����� ��� ������ (�������� ������ � syntax check ��� ������) |
55 |
|
|
# PRELOADS = /components/*.msn /www/*.html /www/*/*.msn /www/*/*/*.msn /www/*/*.html |
56 |
|
|
|
57 |
|
|
# �� ��������� ���������� ���� ��� ������ |
58 |
|
|
# STATIC_SOURCE_ENABLE = YES |
59 |
|
|
|
60 |
|
|
endif |
61 |
|
|
|