🚨 NEWS: Nginx e Web Server Configuration: La Guida Pillar Definitiva per Produzione

Ecco i punti chiave in breve:
💡 Se il tuo server web va in crash al primo picco di traffico, o se carichi le pagine con la sensazione di guardare un caricatore di grano, non è colpa del codice. È colpa di...

🚀 LINK: https://meteoraweb.com/sistemi-operativi-sicurezza/nginx-e-web-server-configuration-la-guida-pillar-definitiva-per-produzione

#loadBalancing #nginx #reverseProxy #sSL #webServer

Nginx e Web Server Configuration: La Guida Pillar Definitiva per Produzione

Guida completa a Nginx per produzione: installazione, reverse proxy, SSL, performance tuning, load balancing, sicurezza e confronto con Apache e Caddy.

Meteora Web
Watch our video to learn how to install LiteSpeed Web Server in Native mode, without a control panel https://youtu.be/cRZ0JOz8U_M?si=mqKeocqMKorEtykD #litespeed #lsws #webserver #installation
Set Up Native LiteSpeed Enterprise Without a Control Panel.

YouTube
Smart Bulb WiFi Server Hosts “Banned” Literature

Let’s stop for a moment and pause to consider the smart bulb. Imagine going back 20 years and telling yourself that people will be putting computers capable of acting as web servers into ligh…

Hackaday

How to Setup #Apache Virtual Hosts on #Ubuntu #VPS 🛠️ (5 Minute Quick-Start Guide)

This article provides a guide demonstrating how to setup Apache virtual hosts on Ubuntu VPS.

This guide walks you through creating multiple websites (virtual hosts) on a single Ubuntu VPS server using Apache. It covers HTTP, optional HTTPS with Let’s Encrypt, and common gotchas (and ...
Continued 👉 https://blog.radwebhosting.com/setup-apache-virtual-hosts-on-ubuntu-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #opensource #selfhosting #letsencrypt #virtualhosts #webserver #selfhosted

How to Setup #Apache Virtual Hosts on #Ubuntu #VPS 🛠️ (5 Minute Quick-Start Guide)

This article provides a guide demonstrating how to setup Apache virtual hosts on Ubuntu VPS.

This guide walks you through creating multiple websites (virtual hosts) on a single Ubuntu VPS server using Apache. It covers HTTP, optional HTTPS with Let’s Encrypt, and common gotchas (and ...
Continued 👉 https://blog.radwebhosting.com/setup-apache-virtual-hosts-on-ubuntu-vps/?utm_source=mastodon&utm_medium=social&utm_campaign=mastodon.raddemo.host #selfhosting #letsencrypt #opensource #selfhosted #webserver #virtualhosts

Weird.

I received a message this afternoon on my webserver, an exact duplicate of a message I received from someone a month ago. The IP address for today's copy is still in the logs (a Proton VPN IP), and it wasn't used for anything else today, just the form entry by POST, triggering various GETS for the confirmation page in response.

Perhaps the POST was cached somewhere and just got retriggered ... a month later?

Trying to think how this could be something deliberate...

#ITSec #webServer

One Open-source Project Daily

Ngrok FRP Alternative • Fast • Lightweight • 0 Dependency • Pluggable • TLS interception • DNS-over-HTTPS • Poor Man's VPN • Reverse & Forward • "Proxy Server" framework • "Web Server" framework • "PubSub" framework • "Work" acceptor & executor framework

https://github.com/abhinavsingh/proxy.py

#1ospd #opensource #dnsoverhttps #gfw #httpproxy #httpserver #httpsproxy #maninthemiddle #mitm #mitmproxy #ngrok #ngrokalternative #ngrokreplacement #proxy #proxyserver #python3 #reverseproxy #tlsinterception #tunnel #vpn #webserver #webserver
GitHub - abhinavsingh/proxy.py: 💫 Ngrok FRP Alternative • ⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • 😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • 👮🏿 "Proxy Server" framework • 🌐 "Web Server" framework • ➵ ➶ ➷ ➠ "PubSub" framework • 👷 "Work" acceptor & executor framework

💫 Ngrok FRP Alternative • ⚡ Fast • 🪶 Lightweight • 0️⃣ Dependency • 🔌 Pluggable • 😈 TLS interception • 🔒 DNS-over-HTTPS • 🔥 Poor Man's VPN • ⏪ Reverse & ⏩ Forward • 👮🏿 "Proxy Server&qu...

GitHub

🌐 lucasdillmann/nginx-ignition

Manages nginx web server configurations through a user interface, supporting virtual hosts, SSL, and Docker

⭐ Stars: 2110
📅 Last Update: Jun 10, 2026

https://github.com/lucasdillmann/nginx-ignition

#selfhosted #homelab #selfhost #selfhosting #opensource #nginx #webserver

GitHub - lucasdillmann/nginx-ignition: An user interface for the nginx web server, aimed at developers and enthusiasts that don't want to manage configuration files manually

An user interface for the nginx web server, aimed at developers and enthusiasts that don't want to manage configuration files manually - lucasdillmann/nginx-ignition

GitHub

dumb trick learned today: nginx uses error code 497 to mean "this looks like you accidentally sent an http request on the https port."

you can configure the server to say "sure whatever" and serve the page anyway.

# serve http and https over same port listen 8000 ssl; error_page 497 =200 $request_uri;
https://serverfault.com/a/664936

#project_kettle #programming #nginx #webserver

Handling http and https requests using a single port with nginx

i was wondering if nginx is able to handle http and https requests on the same port. [*] This is what i'm trying to do. I'm running a web server (lighttpd) handling http requests, and a C program...

Server Fault