We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f20c6f commit 1064731Copy full SHA for 1064731
extensions/nginx/letsencrypt.js
@@ -16,7 +16,7 @@ module.exports = function letsencrypt(instance, email, staging, renew) {
16
downloadPromise = Promise.resolve();
17
} else {
18
let acmeUrl = `https://raw.githubusercontent.com/Neilpang/acme.sh/${ACME_VERSION}/acme.sh`;
19
- downloadPromise = download(acmeUrl).then(data => fs.writeFile(acmePath, data, {mode: 0o774}));
+ downloadPromise = download(acmeUrl).then(data => fs.writeFile(acmePath, data, {mode: 0o755}));
20
}
21
22
return downloadPromise.then(() => {
0 commit comments