Nginx Webserver Part II

preview_player
Показать описание
In This long video :) , we will cover authentication methods. Password protect our website, Access control with IP ( IP Based restriction) and we will see how to allow specific portion of our website and restrict the rest.
Third video will be regarding Nginx with Varnish
Рекомендации по теме
Комментарии
Автор

I wanted to just say "thumbs up" also regarding the way you have made the video without editing out possible errors or what not, it's a more human like approach, and we learn much more through our errors.. Bravo!!!!

federicomanuzzato
Автор

Dear Sal,

Thank you for the tutorial. I have a question how can i change ftp port on vsftpd . I have tried with others it worked fine but can't do it with centos7

ehsanulbarr
Автор

Thx for the good vid bro


//block IP
.
.
.
Location

            Auth_basic off;
            Allow 192.168.1.1;
            Deny 192.168.1.100;
            Deny all;            Auth_basic „SUPER AUTH“;
            Auth_basic_user_file /etc/nginx/.htpasswd;
}

Location
/public/ {
            Auth_basic off;
}          

Systemctl restart nginx

Isacc