blob: ab8bd81ab7f9704cd947320af4d8e48856d0bceb (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# general-example.yml:
# Example values for the "general" config file.
#
# Configuration parameters, in YAML syntax.
#
# Copy this file to one called "general.yml" in the same directory. Or
# have multiple config files and use a symlink to change between them.
# PostgreSQL database for FMS
FMS_DB_HOST: 'localhost'
FMS_DB_PORT: '5432'
FMS_DB_NAME: 'fms'
FMS_DB_USER: 'fms'
FMS_DB_PASS: ''
BASE_URL: 'http://www.example.org'
EMAIL_DOMAIN: 'example.org'
CONTACT_EMAIL: 'team@example.org'
TEST_EMAIL_PREFIX: ''
CONTACT_NAME: 'FixMyStreet'
STAGING_SITE: 1
UPLOAD_DIR: '/upload/'
GEO_CACHE: '/cache/'
GOOGLE_MAPS_API_KEY: ''
BING_MAPS_API_KEY: ''
KASABI_API_KEY: ''
LONDON_REPORTIT_URL: ''
LONDON_REPORTIT_KEY: ''
LONDON_REPORTIT_SECRET: ''
MAPIT_URL: 'http://mapit.mysociety.org/'
MAP_TYPE: 'OSM'
EVEL_URL: 'http://services.mysociety.org/evel'
GAZE_URL: 'http://gaze.mysociety.org/gaze'
# Tracking
TRACKING: 0 # off by default
TRACKING_URL: 'http://path/to/web/bug'
TRACKING_SECRET: 'really-secret-value'
AUTH_SHARED_SECRET: ''
HEARFROMYOURMP_BASE_URL: ''
SMTP_SMARTHOST: 'localhost'
IPHONE_URL: ''
# Log file (used in test harness, and later in admin scripts)
HTTPD_ERROR_LOG: '/var/log/apache/error.log'
ALLOWED_COBRANDS:
- cobrand_one
- cobrand_two: 'hostname_substring2'
# How many items are returned in the GeoRSS feeds by default
RSS_LIMIT: '20'
# Should problem reports link to the council summary pages?
AREA_LINKS_FROM_PROBLEMS: '0'
# used to override the STAGING SERVER safety mechanism in send-reports
TESTING_COUNCILS: ''
# if you're using Message Manager, include the URL here (see https://github.com/mysociety/message-manager/)
MESSAGE_MANAGER_URL: ''
|