Skip to content

Commit 40a0ac5

Browse files
committed
Merge branch 'release/4.3.0'
2 parents f979061 + 122998f commit 40a0ac5

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

docker-compose.osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ services:
5959
network_mode: service:web
6060

6161
redis:
62-
image: redis:alpine
62+
image: redis:6.0-alpine
6363
command: |
6464
redis-server
6565
--maxmemory 256m

fixtures/php/settings.php.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,20 @@ if (getenv('TRUSTED_HOST_PATTERNS')) {
7474
* END SHEPHERD CONFIG
7575
*/
7676

77+
/**
78+
* START OKTA CONFIG
79+
*
80+
* Settings for Okta auth.
81+
*/
82+
if (getenv('UA_AUTH_CLIENT_SECRET')) {
83+
$settings['ua_auth.environment'] = getenv('UA_AUTH_ENVIRONMENT');
84+
$settings['ua_auth.client_id'] = getenv('UA_AUTH_CLIENT_ID');
85+
$settings['ua_auth.client_secret'] = getenv('UA_AUTH_CLIENT_SECRET');
86+
}
87+
/**
88+
* END OKTA CONFIG
89+
*/
90+
7791
/**
7892
* START APP CONFIG
7993
*

0 commit comments

Comments
 (0)