Add WOTemplate for nginx.conf

This commit is contained in:
VirtuBox
2019-08-19 18:32:17 +02:00
parent 262bf77225
commit c6904241d6

View File

@@ -150,19 +150,14 @@ def post_pref(self, apt_packages, packages):
ngxcnf = '/etc/nginx/conf.d' ngxcnf = '/etc/nginx/conf.d'
ngxcom = '/etc/nginx/common' ngxcom = '/etc/nginx/common'
ngxroot = '/var/www/' ngxroot = '/var/www/'
if os.path.isfile('/etc/nginx/nginx.conf'): if (WOVariables.wo_distro == 'ubuntu' or
if (WOVariables.wo_distro == 'ubuntu' or WOVariables.wo_platform_codename == 'buster'):
WOVariables.wo_platform_codename == 'buster'): data = dict(tls13=True)
data = dict(tls13=True) else:
else: data = dict(tls13=False)
data = dict(tls13=False) WOTemplate.tmpl_render(self,
Log.debug(self, 'Writting the nginx configuration to ' '/etc/nginx/nginx.conf',
'file /etc/nginx/nginx.conf') 'nginx-core.mustache', data)
wo_nginx = open('/etc/nginx/nginx.conf',
encoding='utf-8', mode='w')
self.app.render(
(data), 'nginx-core.mustache', out=wo_nginx)
wo_nginx.close()
if not os.path.isfile('{0}/gzip.conf.disabled'.format(ngxcnf)): if not os.path.isfile('{0}/gzip.conf.disabled'.format(ngxcnf)):
data = dict() data = dict()