Skip to content

Instantly share code, notes, and snippets.

View adamcrosby's full-sized avatar
💭
alert();

Adam Crosby adamcrosby

💭
alert();
View GitHub Profile
@adamcrosby
adamcrosby / nginx.conf
Last active November 17, 2016 13:31 — forked from hewittc/elektronring.conf
NGinx Config to Make TLS Great Again
server {
listen [::]:80 ipv6only=off;
server_name domain.com www.domain.com;
rewrite ^ https://$host$request_uri permanent;
}
server {
listen [::]:443 ipv6only=off default_server ssl;
server_name domain.com www.domain.com;