Skip to content

Instantly share code, notes, and snippets.

@fobiasmog
fobiasmog / stylus.md
Created March 23, 2021 20:09 — forked from neretin-trike/stylus.md
Туториал по CSS препроцессору Stylus
@fobiasmog
fobiasmog / nginx.conf
Created June 30, 2019 14:44 — forked from nrollr/nginx.conf
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