NGINX

Easy setup NGINX HTTP3 and QUIC in Ubuntu

Ubuntu 22.04 How to install NGINX HTTP3/QUIC

What’s NGINX NGINX is a high-performance web server known for its efficiency, stability, and rich feature set. It’s designed to handle...
sysadmin.id
2 min read

Hide PHP-FPM Version on NGINX

Check PHP-FPM version on NGINX HTTP response $ curl -I localhost/index.php HTTP/1.1 200 OK Date: Sat, 12 Aug 2017 14:07:54 GMT...
sysadmin.id
16 sec read

Hide Server Info Response on NGINX

How to hide `Server:` Response info on NGINX $ curl -I localhost HTTP/1.1 200 OK Server: nginx/1.4.6 (Ubuntu) Date: Fri, 11...
sysadmin.id
26 sec read

Block or ban ip with NGINX

How to block ip with NGINX 0. define block ip on nginx.conf vim /etc/nginx/nginx.conf http { geo $ban_ip { default 0;...
sysadmin.id
23 sec read

Redirect www and non-www http to non-www https on NGINX

How to set up redirect www and non-www http to non-www https o nginx config file vim /etc/nginx/sites-enabled/blackonsole.conf # http server...
sysadmin.id
16 sec read