This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I had a bit of trouble getting my unifi controller (hosted offsite) to use a proxy/letsencrypt. So here are the fruits of my labor. | |
# The unifi default port is 8443 running on localhost. | |
# License: CC0 (Public Domain) | |
server { | |
# SSL configuration | |
# | |
listen 443 ssl default_server; | |
listen [::]:443 ssl default_server; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"request": "/Volumes/code/main/corvair/node_modules/babel-runtime/node_modules/core-js/library/modules/_iterators.js", | |
"userRequest": "/Volumes/code/main/corvair/node_modules/babel-runtime/node_modules/core-js/library/modules/_iterators.js", | |
"rawRequest": "./_iterators", | |
"sourceLength": 20 | |
}, | |
{ | |
"request": "/Volumes/code/main/corvair/node_modules/babel-runtime/node_modules/core-js/library/modules/_library.js", | |
"userRequest": "/Volumes/code/main/corvair/node_modules/babel-runtime/node_modules/core-js/library/modules/_library.js", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script> | |
var height = 18; | |
var data = { | |
type: 'directory', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Redfin Basic Responsive Demo - Media Query CSS | |
Eric Gideon & Kevin Jonson, 2013 | |
For use with the HTML at https://gist.github.com/kcjonson/6011849 | |
*/ | |
/* SMALL - nav layout ONLY for screens UNDER 600PX wide */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Redfin Basic Responsive Demo - CSS | |
Eric Gideon & Kevin Jonson, 2013 | |
For use with the HTML at https://gist.github.com/kcjonson/6011849 | |
*/ | |
/* Reset */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Responsive CSS demo" /> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Responsive Layout demo</title> | |
<meta name="viewport" content="width=device-width, maximum-scale=1, minimum-scale=1"> | |
<link rel="stylesheet" href="style.css"> |