Skip to content

Instantly share code, notes, and snippets.

View TylerThompson's full-sized avatar
🏗️
Breaking and Building things

Tyler Thompson TylerThompson

🏗️
Breaking and Building things
View GitHub Profile
@nrollr
nrollr / nginx.conf
Last active June 9, 2024 23:39
NGINX config for SSL with Let's Encrypt certs
# UPDATED 17 February 2019
# Redirect all HTTP traffic to HTTPS
server {
listen 80;
listen [::]:80;
server_name www.domain.com domain.com;
return 301 https://$host$request_uri;
}
# SSL configuration