Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
iberculturaviva
iberculturaviva-mapas
Commits
162f5ec0
Commit
162f5ec0
authored
4 years ago
by
Rafa Chaves
Browse files
Options
Download
Email Patches
Plain Diff
atualiza configuração do autenticador
parent
82925d6d
Pipeline
#10996
passed with stages
in 57 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
compose/common/config.d/authentication.php
compose/common/config.d/authentication.php
+30
-1
No files found.
compose/common/config.d/authentication.php
View file @
162f5ec0
<?php
return
[
'auth.provider'
=>
'\MultipleLocalAuth\Provider'
,
];
\ No newline at end of file
'auth.config'
=>
array
(
'salt'
=>
'LT_SECURITY_SALT_SECURITY_SALT_SECURITY_SALT_SECURITY_SALT_SECU'
,
'timeout'
=>
'24 hours'
,
'strategies'
=>
[
'Facebook'
=>
array
(
'app_id'
=>
env
(
'AUTH_FACEBOOK_APP_ID'
,
null
),
'app_secret'
=>
env
(
'AUTH_FACEBOOK_APP_SECRET'
,
null
),
'scope'
=>
env
(
'AUTH_FACEBOOK_SCOPE'
,
'email'
),
),
'LinkedIn'
=>
array
(
'api_key'
=>
env
(
'AUTH_LINKEDIN_API_KEY'
,
null
),
'secret_key'
=>
env
(
'AUTH_LINKEDIN_SECRET_KEY'
,
null
),
'redirect_uri'
=>
APP_BASE_URL
.
'autenticacao/linkedin/oauth2callback'
,
'scope'
=>
env
(
'AUTH_LINKEDIN_SCOPE'
,
'r_emailaddress'
)
),
'Google'
=>
array
(
'client_id'
=>
env
(
'AUTH_GOOGLE_CLIENT_ID'
,
null
),
'client_secret'
=>
env
(
'AUTH_GOOGLE_CLIENT_SECRET'
,
null
),
'redirect_uri'
=>
APP_BASE_URL
.
'autenticacao/google/oauth2callback'
,
'scope'
=>
env
(
'AUTH_GOOGLE_SCOPE'
,
'email'
),
),
'Twitter'
=>
array
(
'app_id'
=>
env
(
'AUTH_TWITTER_APP_ID'
,
null
),
'app_secret'
=>
env
(
'AUTH_TWITTER_APP_SECRET'
,
null
),
),
]
),
];
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment