瀏覽代碼

Update ApacheWebsiteCreate.php

Bozhidar Slaveykov 1 年之前
父節點
當前提交
7645b2899b
共有 1 個文件被更改,包括 9 次插入7 次删除
  1. 9 7
      web/app/Actions/ApacheWebsiteCreate.php

+ 9 - 7
web/app/Actions/ApacheWebsiteCreate.php

@@ -55,13 +55,15 @@ class ApacheWebsiteCreate
 
     public function handle()
     {
-        $getLinuxUser = new GetLinuxUser();
-        $getLinuxUser->setUsername($this->user);
-        $linuxUser = $getLinuxUser->handle();
+//        $getLinuxUser = new GetLinuxUser();
+//        $getLinuxUser->setUsername($this->user);
+//        $linuxUser = $getLinuxUser->handle();
+//
+//        if (empty($linuxUser)) {
+//            return false;
+//        }
 
-        if (empty($linuxUser)) {
-            return false;
-        }
+        $linuxUser = $this->user;
 
         if ($this->isMainDomain) {
             $allDomainsRoot = '/home/'.$this->user.'/public_html';
@@ -104,7 +106,7 @@ class ApacheWebsiteCreate
             mkdir($domainPublic);
         }
 
-        shell_exec('chmod -R 775 /etc/apache2/sites-available/');
+     //   shell_exec('chmod -R 775 /etc/apache2/sites-available/');
 
         file_put_contents('/etc/apache2/sites-available/'.$settings['domain'].'.conf', $apache2Sample);