Merge master for RC
[laas.git] / config.env.sample
1 DASHBOARD_URL=http://127.0.0.1:8000
2
3 # SECURITY WARNING: don't run with debug turned on in production!
4 DEBUG=True
5 # TEST should be True if you want to run some tests in your local dev environment
6 TEST=False
7
8 # These configure the postgres container and
9 # tell django how to access the database
10 # You shouldn't really need to change these, unless
11 # You want a specific user / pass on the DB
12 # The POSTGRES_ vars and DB_ vars should be kept in sync, eg
13 # POSTGRES_DB == DB_NAME
14 # POSTGRES_USER == DB_USER
15 # POSTGRES_PASSWORD == DB_PASS
16 POSTGRES_DB=sample_name
17 POSTGRES_USER=sample_user
18 POSTGRES_PASSWORD=sample_pass
19 DB_NAME=sample_name
20 DB_USER=sample_user
21 DB_PASS=sample_pass
22 DB_SERVICE=postgres
23 DB_PORT=5432
24
25 # tells the dashboard to expect host forwarding from proxy (if using LFID, needs to be True)
26 EXPECT_HOST_FORWARDING=False
27
28 # string indicating what authorization to deploy with
29 AUTH_SETTING=choose_auth # LFID or OAUTH
30
31 # SECURITY WARNING: keep the secret key used in production secret!
32 SECRET_KEY=http://www.miniwebtool.com/django-secret-key-generator/
33
34 OAUTH_CONSUMER_KEY=sample_key
35 OAUTH_CONSUMER_SECRET=sample_secret
36
37 # access information for Jira
38 # In addition to this, the rsa keys from your jira admin
39 # need to go into src/account
40 JIRA_URL=sample_url
41 JIRA_USER_NAME=sample_jira_user
42 JIRA_USER_PASSWORD=sample_jira_pass
43
44 # LFID
45 OIDC_CLIENT_ID=sample_id
46 OIDC_CLIENT_SECRET=sample_secret
47
48 OIDC_AUTHORIZATION_ENDPOINT=https://linuxfoundation-test.auth0.com/authorize
49 OIDC_TOKEN_ENDPOINT=https://linuxfoundation-test.auth0.com/oauth/token
50 OIDC_USER_ENDPOINT=https://linuxfoundation-test.auth0.com/userinfo
51
52 CLAIMS_ENDPOINT=https://sso.linuxfoundation.org/claims/
53
54 OIDC_RP_SIGN_ALGO=RS256
55 OIDC_OP_JWKS_ENDPOINT=https://sso.linuxfoundation.org/.well-known/jwks.json
56
57 # Rabbitmq
58 RABBITMQ_DEFAULT_USER=opnfv
59 RABBITMQ_DEFAULT_PASS=opnfvopnfv
60
61 # Jenkins Build Server
62 JENKINS_URL=https://build.opnfv.org/ci
63
64 # Email Settings
65 EMAIL_HOST=
66 EMAIL_PORT=
67 EMAIL_HOST_USER=
68 EMAIL_HOST_PASSWORD=
69 DEFAULT_FROM_EMAIL=webmaster@localhost
70
71
72 TEMPLATE_OVERRIDE_DIR=laas