Skip to content

Instantly share code, notes, and snippets.

@islandskater43
islandskater43 / ip-ranges.json
Last active November 18, 2016 23:19
Amazon IP Ranges
{
"syncToken": "1479494948",
"createDate": "2016-11-18-18-49-08",
"prefixes": [
{
"ip_prefix": "13.32.0.0/15",
"region": "GLOBAL",
"service": "AMAZON"
},
{
@sl4m
sl4m / gist:5091803
Created March 5, 2013 16:57 — forked from trcarden/gist:3295935
create self-signed certificate for localhost
# SSL self signed localhost for rails start to finish, no red warnings.
# 1) Create your private key (any password will do, we remove it below)
$ openssl genrsa -des3 -out server.orig.key 2048
# 2) Remove the password
$ openssl rsa -in server.orig.key -out server.key