Nginx Reverse Proxy on AWS EC2 Amazon Linux 2


This video is part of the following playlists:


Install and set up an nginx reverse proxy on an Amazon Linux 2 ec2 instance.

Code

sudo amazon-linux-extras install nginx1 -y
sudo systemctl enable nginx
sudo systemctl start nginx
sudo vim /etc/nginx/nginx.conf
server {
  location / {
        proxy_pass http://localhost:8080;
  }
}

Find an issue with this page? Fix it on GitHub