Skip to content

Instantly share code, notes, and snippets.

View Danielk84's full-sized avatar
🎯
Focusing

Daniel Karami Danielk84

🎯
Focusing
  • Iran, Isfahan
  • 00:49 (UTC +03:30)
View GitHub Profile
@nbeguier
nbeguier / nginx.conf
Last active November 22, 2025 15:18
Nginx: TLS Security Configuration 2023
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name __REDACTED__;
ssl_certificate __REDACTED__ ;
ssl_certificate_key __REDACTED__;
# Only return Nginx in server header
server_tokens off;
@nicolasdao
nicolasdao / open_source_licenses.md
Last active February 15, 2026 16:39
What you need to know to choose an open source license.
@plentz
plentz / nginx.conf
Last active March 13, 2026 00:11
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048