31 Mar 25

Web framework that integrates with OpenResty for creating web applications with Lua

by SergeantBiggs 8 months ago saved 2 times

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

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
Tags:


29 Aug 22

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