写一个关于安装nginx的shell脚本
时间: 2023-03-14 11:20:46 浏览: 109
nginx-script_nginx_shell_
#!/bin/bash
#安装Nginx
sudo apt-get update
sudo apt-get install nginx
#启动Nginx
sudo systemctl start nginx
#检查Nginx是否已启动
sudo systemctl status nginx
阅读全文
nginx-script_nginx_shell_