1. Install nginx
2. Install minio
3. Install mc client
$ mc mb myminio/static
Bucket created successfully ‘myminio/static’.
| /***** | |
| * Title: Manage & Run Default Values | |
| * License: MIT | |
| * Author: Openside (Team behind On2Air products and BuiltOnAir community) | |
| * Sites: | |
| * https://openside.com - Openside Consulting Services | |
| * https://openside.com/#products - On2Air Products | |
| * https://builtonair.com - All things Airtable Community | |
| * | |
| * Reach out for all your Airtable needs |
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
| var express = require('express'), | |
| instant = require('instant'), | |
| colors = require('colors'), | |
| app = express(); | |
| app.use(instant(__dirname)); | |
| app.listen(3000, | |
| console.log('Navigate to ' + 'http://localhost:3000'.green + ' to view your page') | |
| ); |
| var crypto = require('crypto'); | |
| var SaltLength = 9; | |
| function createHash(password) { | |
| var salt = generateSalt(SaltLength); | |
| var hash = md5(password + salt); | |
| return salt + hash; | |
| } |
| var http = require("http"); | |
| /* | |
| add following to your hosts config to test: | |
| 10.11.12.8 www.vhost1.net | |
| 10.11.12.8 www.vhost2.com | |
| 10.11.12.8 www.vhost3.test.com | |
| 10.11.12.8 static.vhost1.net |