Difference between revisions of "Nginx"
From Wasya Wiki
(→For webdav) |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
* See also [[ webdav ]] | * See also [[ webdav ]] | ||
− | * [[ Nginx Passenger ]] | + | * See also [[ Nginx Passenger ]] |
= Install = | = Install = | ||
Line 7: | Line 7: | ||
From source: https://nginx.org/en/download.html | From source: https://nginx.org/en/download.html | ||
− | + | apt-get install libpcre3 libpcre3-dev | |
− | + | ./configure --with-http_dav_module | |
make | make | ||
make install | make install | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
= Use = | = Use = | ||
Line 36: | Line 29: | ||
== performance == | == performance == | ||
From: https://medium.com/@anirudhdey/maximizing-concurrency-in-nginx-tips-and-trick-df23c10cda71 | From: https://medium.com/@anirudhdey/maximizing-concurrency-in-nginx-tips-and-trick-df23c10cda71 | ||
+ | |||
+ | == restart == | ||
+ | |||
+ | sudo pkill -f nginx & wait $! | ||
+ | sudo systemctl start nginx |
Latest revision as of 15:52, 10 December 2024
- See also webdav
- See also Nginx Passenger
Install
From source: https://nginx.org/en/download.html
apt-get install libpcre3 libpcre3-dev ./configure --with-http_dav_module make make install
Use
basic auth
From: https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/
sudo htpasswd -c /etc/apache2/.htpasswd user1 sudo htpasswd /etc/apache2/.htpasswd user2
location /api { auth_basic "Administrator’s Area"; auth_basic_user_file /etc/apache2/.htpasswd; }
performance
From: https://medium.com/@anirudhdey/maximizing-concurrency-in-nginx-tips-and-trick-df23c10cda71
restart
sudo pkill -f nginx & wait $! sudo systemctl start nginx