mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
609 B
19 lines
609 B
DATABASE_URL = postgresql://postgres:@sapldb:/sapl
|
|
SECRET_KEY = 'mzp++@i1y-6y8ez_=^sfbr!dzuyry#^@v(3g^2d1k9%f=+mhlb'
|
|
DEBUG = False
|
|
EMAIL_USE_TLS = True
|
|
EMAIL_PORT = 587
|
|
EMAIL_HOST = ''
|
|
EMAIL_HOST_USER = ''
|
|
EMAIL_SEND_USER = ''
|
|
EMAIL_HOST_PASSWORD = ''
|
|
|
|
# Login Único gov.br
|
|
GOVBR_LOGIN_ENABLED = False
|
|
GOVBR_SSO_BASE_URL = https://sso.staging.acesso.gov.br
|
|
GOVBR_CLIENT_ID = ''
|
|
GOVBR_CLIENT_SECRET = ''
|
|
GOVBR_REDIRECT_URI = https://sapl.indaiatuba.tec.br/auth/govbr/callback/
|
|
GOVBR_POST_LOGOUT_REDIRECT_URI = https://sapl.indaiatuba.tec.br
|
|
GOVBR_USER_LOOKUP_FIELDS = username
|
|
GOVBR_AUTO_CREATE_USERS = False
|
|
|