This video is part of the following playlists:
Install and set up an nginx reverse proxy on an Amazon Linux 2 ec2 instance.
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