config: fix France Connect callback URL when testing locally (#4673)
Correction de l'URL locale de France Connect sur les environnements de développement
This commit is contained in:
commit
8d2d66a2b6
1 changed files with 5 additions and 1 deletions
|
@ -15,7 +15,7 @@ defaults: &defaults
|
||||||
basic_auth:
|
basic_auth:
|
||||||
username: <%= ENV['BASIC_AUTH_USERNAME'] %>
|
username: <%= ENV['BASIC_AUTH_USERNAME'] %>
|
||||||
password: <%= ENV['BASIC_AUTH_PASSWORD'] %>
|
password: <%= ENV['BASIC_AUTH_PASSWORD'] %>
|
||||||
france_connect_particulier:
|
france_connect_particulier: &france_connect_particulier
|
||||||
identifier: <%= ENV['FC_PARTICULIER_ID'] %>
|
identifier: <%= ENV['FC_PARTICULIER_ID'] %>
|
||||||
secret: <%= ENV['FC_PARTICULIER_SECRET'] %>
|
secret: <%= ENV['FC_PARTICULIER_SECRET'] %>
|
||||||
redirect_uri: https://<%= ENV['APP_HOST'] %>/france_connect/particulier/callback
|
redirect_uri: https://<%= ENV['APP_HOST'] %>/france_connect/particulier/callback
|
||||||
|
@ -76,6 +76,10 @@ defaults: &defaults
|
||||||
|
|
||||||
development:
|
development:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
france_connect_particulier:
|
||||||
|
<<: *france_connect_particulier
|
||||||
|
redirect_uri: http://<%= ENV['APP_HOST'] %>/france_connect/particulier/callback
|
||||||
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
|
Loading…
Add table
Reference in a new issue