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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
diff --git a/config/app_config.yml.sample b/config/app_config.yml.sample
index f82b087198..408d668aa9 100644
--- a/config/app_config.yml.sample
+++ b/config/app_config.yml.sample
@@ -9,20 +9,20 @@ defaults: &defaults
csv_guessing: true
debug_assets: true
mandatory_keys: [layer_opts, sql_api, varnish_management, redis, session_domain]
- session_domain: '.localhost.lan'
+ session_domain: 'localhost'
# If activated, urls will use usernames in format //SESSION_DOMAIN/user/USERNAME and ignore subdomains if present
- subdomainless_urls: false
+ subdomainless_urls: true
http_port: 3000 # nil|integer. HTTP port to use when building urls. Leave empty to use default (80)
- https_port: # nil|integer. HTTPS port to use when building urls. Leave empty to use default (443)
+ https_port: 3000 # nil|integer. HTTPS port to use when building urls. Leave empty to use default (443)
secret_token: '71c2b25921b84a1cb21c71503ab8fb23'
- account_host: 'localhost.lan:3000'
+ account_host: 'localhost:3000'
# Here you can define other hosts different to account_host that also will be CORS enabled
# cors_enabled_hosts:
# - example.com
# - foo.bar
# - carto.dev
account_path: '/account'
- vizjson_cache_domains: ['.localhost.lan']
+ vizjson_cache_domains: ['.localhost']
data_library:
username: 'common-data'
path: '/data-library'
@@ -33,33 +33,33 @@ defaults: &defaults
filter: 'mapnik'
internal:
protocol: 'http'
- domain: 'localhost.lan'
+ domain: 'localhost'
port: '8181'
host: '127.0.0.1'
verifycert: false
private:
protocol: 'http'
- domain: 'localhost.lan'
+ domain: 'localhost'
port: '8181'
verifycert: false
public:
protocol: 'http'
- domain: 'localhost.lan'
+ domain: 'localhost'
port: '8181'
verifycert: false
sql_api:
private:
protocol: 'http'
- domain: 'localhost.lan'
+ domain: 'localhost'
endpoint: '/api/v1/sql'
port: 8080
public:
protocol: 'http'
- domain: 'localhost.lan'
+ domain: 'localhost'
endpoint: '/api/v2/sql'
port: 8080
api_requests_service_url: ''
- developers_host: 'http://developers.localhost.lan:3000'
+ developers_host: 'http://developers.localhost:3000'
google_analytics:
primary: ''
embeds: ''
@@ -168,7 +168,7 @@ defaults: &defaults
users_metadata: 5
redis_migrator_logs: 6
org_metadata_api:
- host: 'localhost.lan'
+ host: 'localhost'
port: '3000'
username: "extension"
password: "elephant"
@@ -237,6 +237,7 @@ defaults: &defaults
unp_temporal_folder: '/tmp/imports/'
# It must end in `/uploads` and be accessible via HTTP, if relative will default to Rails.Root/#{uploads_path}
uploads_path: 'public/uploads'
+ python_bin_path: python2
error_track:
url: 'https://viz2.carto.com/api/v1/sql'
percent_users: 10
@@ -266,10 +266,10 @@ defaults: &defaults
interactivity: "cartodb_id"
debug: false
visible: true
- tiler_domain: "localhost.lan"
+ tiler_domain: "localhost"
tiler_port: "80"
tiler_protocol: "http"
- sql_domain: "localhost.lan"
+ sql_domain: "localhost"
sql_port: "80"
sql_protocol: "http"
extra_params: { cache_policy: 'persist' }
@@ -296,7 +296,7 @@ defaults: &defaults
# max_size_in_bytes: 1048576 # Optional, default is 1 MB
# location: 'organization_assets' # Optional subdirectory for local assets, default is 'organization_assets'
app_assets:
- asset_host: "//cartodb-libs.global.ssl.fastly.net/cartodbui"
+ # asset_host: "//cartodb-libs.global.ssl.fastly.net/cartodbui"
avatars:
gravatar_enabled: true
base_url: '/assets/unversioned/images/avatars'
|