Skip to content

Instantly share code, notes, and snippets.

@taufiqpsumarna
Last active August 30, 2022 05:00
Show Gist options
  • Save taufiqpsumarna/e86692d728eea647f7a58b97da62a153 to your computer and use it in GitHub Desktop.
Save taufiqpsumarna/e86692d728eea647f7a58b97da62a153 to your computer and use it in GitHub Desktop.
Nginx Security And Performance Best Pratice
server {
server_name localhost; #change with your domain name
client_max_body_size 10M;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
server_tokens off;
gzip on;
gzip_proxied any;
gzip_comp_level 4;
gzip_types text/css application/javascript image/svg+xml;
# HSTS protection
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains; preload";
# XSS protection in old browsers
add_header X-XSS-Protection "1; mode=block";
# Block leakage of information
proxy_hide_header X-Powered-By;
# Click-Jacking protection
add_header X-Frame-Options "SAMEORIGIN";
# Prevents unexpected cross-origin information leakage (Optional)
add_header Referrer-Policy "strict-origin-when-cross-origin";
# MIME-sniffing protection in old browsers
add_header X-Content-Type-Options nosniff;
#Use newer SSL Cipher (Disable This Option If You Use Certbot Cloudflare)
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
...........
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment