Till Brehm
2014-08-07 1e6ea5a91d122ca8d8eee9f04e8c16c80c73d669
server/plugins-available/nginx_plugin.inc.php
@@ -351,10 +351,13 @@
         if($data['new']['type'] == 'vhost' || $data['new']['type'] == 'vhostsubdomain') $app->log('document_root not set', LOGLEVEL_WARN);
         return 0;
      }
      if($data['new']['system_user'] == 'root' or $data['new']['system_group'] == 'root') {
         $app->log('Websites cannot be owned by the root user or group.', LOGLEVEL_WARN);
      if($app->system->is_allowed_user($data['new']['system_user'], $app->system->is_user($data['new']['system_user']), true) == false
         || $app->system->is_allowed_group($data['new']['system_group'], $app->system->is_group($data['new']['system_group']), true) == false) {
         $app->log('Websites cannot be owned by the root user or group. User: '.$data['new']['system_user'].' Group: '.$data['new']['system_group'], LOGLEVEL_WARN);
         return 0;
      }
      if(trim($data['new']['domain']) == '') {
         $app->log('domain is empty', LOGLEVEL_WARN);
         return 0;
@@ -2842,8 +2845,6 @@
            $seo_redirects[$prefix.'seo_redirect_operator'] = '!=';
         }
      }
      $seo_redirects[$prefix.'seo_base_domain'] = str_replace('.', '\.', $web['domain']);
      return $seo_redirects;
   }