forked from fryckbos/cop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.sh.example
53 lines (44 loc) · 1.87 KB
/
conf.sh.example
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
#!/bin/bash
# VERSION and REGISTRY are provided by CoScale, don't change these.
export VERSION="3.10.0"
export REGISTRY=docker.coscale.com
# Fill in the registry username and password provided by CoScale.
export REGISTRY_USERNAME=
export REGISTRY_PASSWORD=
export REGISTRY_EMAIL=
# Choose a user (has to be a valid email address) and password for the super user.
export API_SUPER_USER=
export API_SUPER_PASSWD=
# Fill in the URL to access the CoScale API. Eg. API_URL=http://coscale.yourcompany.com
export API_URL=
# Fill in the URL to access the CoScale UI. Eg. APP_URL=http://coscale.yourcompany.com
export APP_URL=
# Fill in the URL to send RUM data to CoScale: RUM_URL has no protocol. Eg. RUM_URL=coscale.mycompany.com
export RUM_URL=
# Set ENABLE_HTTPS to 1 to use HTTPS. Place your certificates and private key in data/ssl/https.pem
export ENABLE_HTTPS=0
# Provide a valid email server configuration below
export MAIL_SERVER=cmail.coscale.com
export MAIL_PORT=25
export MAIL_SSL=false
export MAIL_AUTH=false
export MAIL_USERNAME=
export MAIL_PASSWORD=
# Fill in the email address from which CoScale emails will be sent.
export [email protected]
# Fill in the email address of the CoScale administrator below.
export [email protected]
export [email protected]
# Configure cassandra cleanup.
# CASSANDRA_CLEANER_SLACK=0 : no cleanup is done
# CASSANDRA_CLEANER_SLACK=1 : data is cleaned according to the default time-to-live:
# RESOLUTION TTL
# 1 minute 1 week
# 5 minutes 1 month
# 15 minutes 3 months
# 30 minutes 6 months
# 1 hour 1 year
#
# Choosing a value > 1 will multiply the TTL's accordingly. For example setting CASSANDRA_CLEANER_SLACK=3
# will keep data at minute resolution for 3 weeks, at 5 minutes resolution for 3 months etc.
export CASSANDRA_CLEANER_SLACK=0