Merge changes I6f602266,I6b403a62,Id9d6df5c
[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 (LFID)
29 AUTH_SETTING=LFID
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 # LFID
38 OIDC_CLIENT_ID=sample_id
39 OIDC_CLIENT_SECRET=sample_secret
40
41 OIDC_AUTHORIZATION_ENDPOINT=https://linuxfoundation-test.auth0.com/authorize
42 OIDC_TOKEN_ENDPOINT=https://linuxfoundation-test.auth0.com/oauth/token
43 OIDC_USER_ENDPOINT=https://linuxfoundation-test.auth0.com/userinfo
44 OIDC_AUTHENTICATION_CALLBACK_URL=https://laas.anuket.iol.org/oidc/callback
45
46 CLAIMS_ENDPOINT=https://sso.linuxfoundation.org/claims/
47
48 OIDC_RP_SIGN_ALGO=RS256
49 OIDC_OP_JWKS_ENDPOINT=https://sso.linuxfoundation.org/.well-known/jwks.json
50
51 # Jira
52 JIRA_URL=https://jira.opnfv.org
53 JIRA_USER_NAME=
54 JIRA_USER_PASSWORD=
55
56 # Rabbitmq
57 RABBITMQ_DEFAULT_USER=opnfv
58 RABBITMQ_DEFAULT_PASS=opnfvopnfv
59
60 # Jenkins Build Server
61 JENKINS_URL=https://build.opnfv.org/ci
62
63 # Email Settings
64 EMAIL_HOST=
65 EMAIL_PORT=
66 EMAIL_HOST_USER=
67 EMAIL_HOST_PASSWORD=
68 DEFAULT_FROM_EMAIL=webmaster@localhost
69
70 BOOKING_EXPIRE_TIME=30
71 BOOKING_MAXIMUM_NUMBER=10
72
73 TEMPLATE_OVERRIDE_DIR=laas
74