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 796868a commit 9ad2e03Copy full SHA for 9ad2e03
src/index.js
@@ -27,7 +27,7 @@ class CoCreateNginx {
27
await exec('echo "deb-src http://nginx.org/packages/ubuntu $(lsb_release -cs) nginx" | sudo tee -a /etc/apt/sources.list.d/nginx.list');
28
await exec('curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add -');
29
await exec('sudo apt-get update');
30
- await exec('sudo apt-get install -y nginx');
+ await exec('sudo apt-get install -y nginx-full');
31
await exec("sudo ufw allow 'Nginx Full'");
32
// await exec('sudo apt-get update && sudo apt-get install -y nginx');
33
// await exec("sudo ufw allow 'Nginx Full'");
0 commit comments