Skip to content

Commit

Permalink
Runs update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Workflow committed Jan 11, 2025
1 parent 5b932e3 commit 7f707b6
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 28/apache/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 28/fpm-alpine/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 28/fpm/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 29/apache/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 29/fpm-alpine/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 29/fpm/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 30/apache/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 30/fpm-alpine/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}
4 changes: 4 additions & 0 deletions 30/fpm/config/redis.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
} elseif (getenv('REDIS_HOST')[0] != '/') {
$CONFIG['redis']['port'] = 6379;
}

if (getenv('REDIS_HOST_USER') !== false) {
$CONFIG['redis']['user'] = (string) getenv('REDIS_HOST_USER');
}
}

0 comments on commit 7f707b6

Please sign in to comment.