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

Loading…
Cancel
Save