WordPress Deployment Fix (#441)

* Resolved Issue with WordPress

* Fix for Vito User
This commit is contained in:
Richard Anderson
2025-01-22 19:24:44 +00:00
committed by GitHub
parent bfdf3533fd
commit b63ddfc568
3 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ public function install(Site $site): void
$this->getScript('install.sh', [
'path' => $site->path,
'domain' => $site->domain,
'is_isolated' => $site->isIsolated(),
'is_isolated' => $site->isIsolated() ? 'true' : 'false',
'isolated_username' => $site->user,
'db_name' => $site->type_data['database'],
'db_user' => $site->type_data['database_user'],