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
7f529926
Commit
7f529926
authored
Feb 19, 2021
by
Rafa Chaves
Browse files
remove configuração do autenticador para que seja utilizada a configuração padrão
parent
d5670370
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
30 deletions
+1
-30
compose/common/config.d/authentication.php
compose/common/config.d/authentication.php
+1
-30
No files found.
compose/common/config.d/authentication.php
View file @
7f529926
<?php
<?php
return
[
return
[
'auth.provider'
=>
'\MultipleLocalAuth\Provider'
,
'auth.provider'
=>
'\MultipleLocalAuth\Provider'
,
'auth.config'
=>
array
(
];
'salt'
=>
'LT_SECURITY_SALT_SECURITY_SALT_SECURITY_SALT_SECURITY_SALT_SECU'
,
\ No newline at end of file
'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
),
),
]
),
];
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