06 Dec 25
31 Mar 25
Web framework that integrates with OpenResty for creating web applications with Lua
13 Oct 24
24 Jun 24
17 Nov 23
“Support for QUIC and HTTP/3 protocols is available since 1.25.0”
Debian 12 is still on nginx 1.22.1 so this’ll have to wait for me 🤷🏻♀️
by 2097
2 years ago
02 Jul 23
19 Jun 23
17 Jun 23
11 Jun 23
04 Feb 23
20 Nov 22
Learn how NGINX is used a web server, reverse proxy, load balancer, and HTTP cache to handle the demands of high traffic sites. https://nginx.org#nginx #100S...
by johnkyle
3 years ago
18 Sep 22
12 Sep 22
29 Aug 22
location /somedirectory/ {
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
}
by eli
3 years ago
21 Aug 22
Default server configuration
# server {
listen 80 default_server;
listen [::]:80 default_server;
# SSL configuration
# listen 443 ssl default_server;
# listen [::]:443 ssl default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name example.com www.example.com;
location ~ ^/~(. ?)(/.*)?$ {
alias /home/$1/public_html$2;
index index.html index.htm;
autoindex on;
}
}
by eli
3 years ago