Browse Source

Fixed issue with HHVM config not copying

bugfixes
gau1991 10 years ago
parent
commit
2683a5968f
  1. 3
      ee/cli/plugins/site.py
  2. 1
      ee/cli/plugins/stack.py

3
ee/cli/plugins/site.py

@ -267,7 +267,8 @@ class EESiteCreateController(CementBaseController):
self.app.pargs.wpsubdomain or self.app.pargs.hhvm):
self.app.pargs.html = True
data = ''
data = None
(ee_domain, ee_www_domain) = ValidateDomain(self.app.pargs.site_name)
ee_site_webroot = EEVariables.ee_webroot + ee_domain

1
ee/cli/plugins/stack.py

@ -608,6 +608,7 @@ class EEStackController(CementBaseController):
if os.path.isdir("/etc/nginx") and (not
os.path.isfile("/etc/nginx/common/php-hhvm.conf")):
data = dict()
Log.debug(self, 'Writting the nginx configuration to '
'file /etc/nginx/common/php-hhvm.conf')
ee_nginx = open('/etc/nginx/common/php-hhvm.conf',

Loading…
Cancel
Save