]> git.openstreetmap.org Git - rails.git/blob - config/application.yml
wiki_pages: Run script/misc/update-wiki-pages
[rails.git] / config / application.yml
1 standard_settings: &standard_settings
2   # The maximum area you're allowed to request, in square degrees
3   max_request_area: 0.25
4   # Number of GPS trace/trackpoints returned per-page
5   tracepoints_per_page: 5000
6   # Maximum number of nodes that will be returned by the api in a map request
7   max_number_of_nodes: 50000
8   # Maximum number of nodes that can be in a way (checked on save)
9   max_number_of_way_nodes: 2000
10   # Zoom level to use for postcode results from the geocoder
11   postcode_zoom: 15
12   # Zoom level to use for geonames results from the geocoder
13   geonames_zoom: 12
14   # Timeout for API calls in seconds
15   api_timeout: 300
16   # Timeout for web pages in seconds
17   web_timeout: 30
18   # Periods (in hours) which are allowed for user blocks
19   user_block_periods: [0, 1, 3, 6, 12, 24, 48, 96]
20   # Rate limit for message sending
21   max_messages_per_hour: 60
22   # Domain for handling message replies
23   #messages_domain: "messages.openstreetmap.org"
24   # Quova authentication details
25   #quova_username: ""
26   #quova_password: ""
27   # Spam threshold
28   spam_threshold: 50
29   # Default legale (jurisdiction location) for contributor terms
30   default_legale: GB
31  
32 development:
33   <<: *standard_settings
34
35 production:
36   <<: *standard_settings
37
38 test:
39   <<: *standard_settings