Skip to content

Instantly share code, notes, and snippets.

@031nna
031nna / gist:8a0ef7cc7483701621939bc32d14af5e
Created August 11, 2018 01:56 — forked from mtigas/gist:952344
Mini tutorial for configuring client-side SSL certificates.

Client-side SSL

For excessively paranoid client authentication.

Using self-signed certificate.

Create a Certificate Authority root (which represents this server)

Organization & Common Name: Some human identifier for this server CA.

openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
@031nna
031nna / ngrok-installation.md
Created January 16, 2019 10:58 — forked from wosephjeber/ngrok-installation.md
Installing ngrok on Mac

#Installing ngrok on OSX

  1. Download ngrok
  2. Unzip it to your Applications directory
  3. Create a symlink (instructions below)

Creating a symlink to ngrok

Run the following two commands in Terminal to create the symlink.

# cd into your local bin directory
@031nna
031nna / maintenance-page.php
Last active July 24, 2019 03:06
maintenance page
<?php
$message = '<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
Vagrant.configure("2") do |config|
config.vm.box = "mwrock/Windows2016"
config.vm.hostname = "host-win"
winClientIP = "192.168.99.103"
config.vm.network "private_network", ip: winClientIP
end

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database