nginx: fix owner username of some files

This commit is contained in:
Rico 2021-12-21 17:22:57 +01:00
parent 927a8f2e0c
commit c87ab57e1d
Signed by: stillbeben
GPG key ID: AE1066B5BD0B5041

View file

@ -23,7 +23,7 @@ directories = {
}, },
}, },
'/var/log/nginx-timing': { '/var/log/nginx-timing': {
'owner': 'http', 'owner': 'www-data',
'needs': { 'needs': {
'pkg_apt:nginx', 'pkg_apt:nginx',
}, },
@ -38,7 +38,7 @@ files = {
'/etc/nginx/nginx.conf': { '/etc/nginx/nginx.conf': {
'content_type': 'mako', 'content_type': 'mako',
'context': { 'context': {
'username': 'http', 'username': 'www-data',
**node.metadata['nginx'], **node.metadata['nginx'],
}, },
'triggers': { 'triggers': {