We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3b896f commit e4e94d5Copy full SHA for e4e94d5
backend/internal/nginx.js
@@ -101,7 +101,7 @@ const internalNginx = {
101
logger.info('Testing Nginx configuration');
102
}
103
104
- return utils.exec('/usr/sbin/nginx -t -g "error_log off;"');
+ return utils.exec('/usr/sbin/nginx -t ');
105
},
106
107
/**
@@ -146,7 +146,9 @@ const internalNginx = {
146
return;
147
148
149
- let renderer = new Liquid();
+ let renderer = new Liquid({
150
+ root: __dirname + '/../templates/'
151
+ });
152
let renderedLocations = '';
153
154
const locationRendering = async () => {
0 commit comments