Browse Source

reload nginx after proxy site created

bugfixes
harshadyeola 10 years ago
parent
commit
6f5ec67b1d
  1. 2
      ee/cli/plugins/site.py

2
ee/cli/plugins/site.py

@ -487,6 +487,8 @@ class EESiteCreateController(CementBaseController):
if 'proxy' in data.keys() and data['proxy']: if 'proxy' in data.keys() and data['proxy']:
addNewSite(self, ee_domain, stype, cache, ee_site_webroot) addNewSite(self, ee_domain, stype, cache, ee_site_webroot)
# Service Nginx Reload
EEService.reload_service(self, 'nginx')
Log.info(self, "Successfully created site" Log.info(self, "Successfully created site"
" http://{0}".format(ee_domain)) " http://{0}".format(ee_domain))
return return

Loading…
Cancel
Save