]> git.openstreetmap.org Git - rails.git/blob - config/example.application.yml
Merge remote-tracking branch 'upstream/pull/2063'
[rails.git] / config / example.application.yml
1 defaults: &defaults
2   # The server protocol and host
3   server_protocol: "http"
4   server_url: "openstreetmap.example.com"
5   # Publisher
6   #publisher_url: ""
7   # The generator
8   generator: "OpenStreetMap server"
9   copyright_owner: "OpenStreetMap and contributors"
10   attribution_url: "http://www.openstreetmap.org/copyright"
11   license_url: "http://opendatacommons.org/licenses/odbl/1-0/"
12   # Support email address
13   support_email: "openstreetmap@example.com"
14   # Sender addresses for emails
15   email_from: "OpenStreetMap <openstreetmap@example.com>"
16   email_return_path: "openstreetmap@example.com"
17   # API version
18   api_version: "0.6"
19   # Application status - possible values are:
20   #   :online - online and operating normally
21   #   :api_readonly - site online but API in read-only mode
22   #   :api_offline - site online but API offline
23   #   :database_readonly - database and site in read-only mode
24   #   :database_offline - database offline with site in emergency mode
25   #   :gpx_offline - gpx storage offline
26   status: :online
27   # The maximum area you're allowed to request, in square degrees
28   max_request_area: 0.25
29   # Number of GPS trace/trackpoints returned per-page
30   tracepoints_per_page: 5000
31   # Maximum number of nodes that will be returned by the api in a map request
32   max_number_of_nodes: 50000
33   # Maximum number of nodes that can be in a way (checked on save)
34   max_number_of_way_nodes: 2000
35   # The maximum area you're allowed to request notes from, in square degrees
36   max_note_request_area: 25
37   # Zoom level to use for postcode results from the geocoder
38   postcode_zoom: 15
39   # Zoom level to use for geonames results from the geocoder
40   geonames_zoom: 12
41   # Timeout for API calls in seconds
42   api_timeout: 300
43   # Timeout for web pages in seconds
44   web_timeout: 30
45   # Periods (in hours) which are allowed for user blocks
46   user_block_periods: [0, 1, 3, 6, 12, 24, 48, 96]
47   # Rate limit for message sending
48   max_messages_per_hour: 60
49   # Domain for handling message replies
50   #messages_domain: "messages.openstreetmap.org"
51   # Geonames authentication details
52   #geonames_username: ""
53   # GeoIP database
54   #geoip_database: ""
55   # Users to show as being nearby
56   nearby_users: 30
57   # Max radius, in km, for nearby users
58   nearby_radius: 50
59   # Spam threshold
60   spam_threshold: 50
61   # Default legale (jurisdiction location) for contributor terms
62   default_legale: GB
63   # Use the built-in jobs queue for importing traces
64   # Leave as false if you are using the external high-speed gpx importer
65   # https://github.com/openstreetmap/gpx-import
66   trace_use_job_queue: false
67   # Location of GPX traces and images
68   gpx_trace_dir: "/home/osm/traces"
69   gpx_image_dir: "/home/osm/images"
70   # Location of data for attachments
71   attachments_dir: ":rails_root/public/attachments"
72   # Log file to use
73   #log_path: ""
74   # Log file to use for logstash
75   #logstash_path: ""
76   # List of memcache servers to use for caching
77   #memcache_servers: []
78   # Enable legacy OAuth 1.0 support
79   oauth_10_support: true
80   # URL of Nominatim instance to use for geocoding
81   nominatim_url: "https://nominatim.openstreetmap.org/"
82   # Default editor
83   default_editor: "id"
84   # OAuth consumer key for Potlatch 2
85   #potlatch2_key: ""
86   # OAuth consumer key for the web site
87   #oauth_key: ""
88   # OAuth consumer key for iD
89   #id_key: ""
90   # Whether to require users to view the CTs before continuing to edit...
91   require_terms_seen: false
92   # Whether to require users to agree to the CTs before editing
93   require_terms_agreed: false
94   # Imagery to return in capabilities as blacklisted
95   imagery_blacklist:
96     # Current Google imagery URLs have google or googleapis in the domain
97     # with a vt or kh endpoint, and x, y and z query parameters
98     - ".*\\.google(apis)?\\..*/(vt|kh)[\\?/].*([xyz]=.*){3}.*"
99     # Blacklist VWorld
100     - "http://xdworld\\.vworld\\.kr:8080/.*"
101     # Blacklist here
102     - ".*\\.here\\.com[/:].*"
103   # URL of Overpass instance to use for feature queries
104   overpass_url: "https://overpass-api.de/api/interpreter"
105   # Routing endpoints
106   graphhopper_url: "https://graphhopper.com/api/1/route"
107   fossgis_osrm_url: "https://routing.openstreetmap.de/"
108   # External authentication credentials
109   #google_auth_id: ""
110   #google_auth_secret: ""
111   #google_openid_realm: ""
112   #facebook_auth_id: ""
113   #facebook_auth_secret: ""
114   #windowslive_auth_id: ""
115   #windowslive_auth_secret: ""
116   #github_auth_id: ""
117   #github_auth_secret: ""
118   #wikipedia_auth_id: ""
119   #wikipedia_auth_secret: ""
120   # Thunderforest authentication details
121   #thunderforest_key: ""
122   # Key for generating TOTP tokens
123   #totp_key: ""
124   # Enforce Content-Security-Policy
125   csp_enforce: false
126   # URL for reporting Content-Security-Policy violations
127   #csp_report_url: ""
128
129 development:
130   <<: *defaults
131
132 production:
133   <<: *defaults
134
135 test:
136   <<: *defaults
137   # Geonames credentials for testing
138   geonames_username: "dummy"
139   # External authentication credentials for testing
140   google_auth_id: "dummy"
141   google_auth_secret: "dummy"
142   google_openid_realm: "https://www.openstreetmap.org"
143   facebook_auth_id: "dummy"
144   facebook_auth_secret: "dummy"
145   windowslive_auth_id: "dummy"
146   windowslive_auth_secret: "dummy"
147   github_auth_id: "dummy"
148   github_auth_secret: "dummy"
149   wikipedia_auth_id: "dummy"
150   wikipedia_auth_secret: "dummy"