mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
bug fix
This commit is contained in:
parent
d749b3c376
commit
13a86ab2b5
1 changed files with 4 additions and 2 deletions
|
@ -282,6 +282,8 @@ class Installer extends Command
|
|||
$redis_password = $this->ask('Set redis password', 'null');
|
||||
$redis_port = $this->ask('Set redis port', 6379);
|
||||
|
||||
|
||||
$this->updateEnvFile('REDIS_CLIENT', $redis_client);
|
||||
$this->updateEnvFile('REDIS_SCHEME', 'tcp');
|
||||
$this->updateEnvFile('REDIS_HOST', $redis_host);
|
||||
$this->updateEnvFile('REDIS_PASSWORD', $redis_password);
|
||||
|
@ -338,8 +340,8 @@ class Installer extends Command
|
|||
|
||||
$this->updateEnvFile('SESSION_DRIVER', $session);
|
||||
$this->updateEnvFile('CACHE_DRIVER', $cache);
|
||||
$this->updateEnvFile('QUEUE_DRIVER', $cache);
|
||||
$this->updateEnvFile('BROADCAST_DRIVER', $cache);
|
||||
$this->updateEnvFile('QUEUE_DRIVER', $queue);
|
||||
$this->updateEnvFile('BROADCAST_DRIVER', $broadcast);
|
||||
$this->updateEnvFile('LOG_CHANNEL', $log);
|
||||
$this->updateEnvFile('HORIZON_PREFIX', $horizon);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue