Nginx Server Tokens
- Last modified atKonfigurasi server_tokens
pada web server Nginx bertugas untuk menampilkan versi Nginx yang digunakan pada halaman error atau response header di bagian “Server”.
Cara melihatnya bisa menggunakan perintah curl
:
Hasilnya pada response dapat dilihat versi Nginx serta sistem operasi yang digunakan pada bagian Server: nginx/1.10.3 (Ubuntu)
Pada Ubuntu, secara default server_tokens
berada pada posisi enable. Demi keamanan server, ada baiknya server_tokens
ini dimatikan sehingga attacker tidak dapat melihat versi web server serta distro Linux yang digunakan.
ketika dilihat lagi dengan perintah curl
, response tidak lagi menampilkan versi Nginx dan sistem operasi yang digunakan:
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.