Skip to content

Commit 9ad2e03

Browse files
committed
fix: install nginx-full for stream module
1 parent 796868a commit 9ad2e03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class CoCreateNginx {
2727
await exec('echo "deb-src http://nginx.org/packages/ubuntu $(lsb_release -cs) nginx" | sudo tee -a /etc/apt/sources.list.d/nginx.list');
2828
await exec('curl -fsSL https://nginx.org/keys/nginx_signing.key | sudo apt-key add -');
2929
await exec('sudo apt-get update');
30-
await exec('sudo apt-get install -y nginx');
30+
await exec('sudo apt-get install -y nginx-full');
3131
await exec("sudo ufw allow 'Nginx Full'");
3232
// await exec('sudo apt-get update && sudo apt-get install -y nginx');
3333
// await exec("sudo ufw allow 'Nginx Full'");

0 commit comments

Comments
 (0)