
How to install NGINX on an EC2 Instance
1657
63________
Use this bash script to install NGINX on an EC2 Instance
#!/bin/bash
sudo upgrade -y
sudo yum install nginx -y
sudo systemctl enable nginx
sudo systemctl start nginx
Thanks for watching!
コメント