MSNCodeSNIPPETS← msncode.dev
snippets/nginx

Enable Gzip Compression

Compress responses to reduce bandwidth

nginxnginxgzipcompress
NGINX
gzip on;
gzip_types text/css application/javascript application/json;

More nginx snippets

Custom 404 Page

Serve a custom error page for 404s

Reverse Proxy to Backend

Forward requests to a backend server

Redirect HTTP to HTTPS

Force all traffic to use HTTPS

Serve Static Files

Serve static files from a directory