A reverse proxy can do wonders for your network and its security. Learn how to configure NGINX to serve this very purpose.
For the full step-by-step article, head to https://www.techrepublic.com/article/...
List of Commands:
sudo apt-get install nginx -y
sudo systemctl start nginx
sudo systemctl enable nginx
sudo unlink /etc/nginx/sites-enabled/default
sudo nano /etc/nginx/sites-available/proxy_config.conf
server {
listen 80;
location / {
proxy_pass http://SERVER;
}
}
sudo ln -s /etc/nginx/sites-available/proxy_config.conf /etc/nginx/sites-enabled/proxy_config.conf
sudo systemctl restart nginx
Watch more How To videos: / @howtomaketechwork
Watch more TechRepublic videos: https://www.techrepublic.com/videos/
Follow TechRepublic on Twitter: / techrepublic
Follow TechRepublic on Facebook: / techrepublic
Follow TechRepublic on Instagram: / techrepublic
Follow TechRepublic on LinkedIn: / tech. .
Watch Tech Stories, a series of mini documentaries from TechRepublic: https://www.youtube.com/watch?v=RRPAs...