Update index.py

pull/109/head
Mr Chen 6 years ago
parent d448ebfbdb
commit cb92790935
  1. 7
      plugins/openresty/index.py

@ -65,6 +65,11 @@ def getConf():
return path
def getConfTpl():
path = getPluginDir() + '/conf/nginx.conf'
return path
def getOs():
data = {}
data['os'] = public.getOs()
@ -107,7 +112,7 @@ def checkAuthEq(file, owner='root'):
def confReplace():
service_path = os.path.dirname(os.getcwd())
content = public.readFile(getConf())
content = public.readFile(getConfTpl())
content = content.replace('{$SERVER_PATH}', service_path)
user = 'www'

Loading…
Cancel
Save