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
// ==UserScript== | |
// @name Readable estimations | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Replaces estimation symbols with easy to read numbers. | |
// @author Carlos Feliciano-Barba | |
// @match https://www.pivotaltracker.com/n/projects/* | |
// @grant none | |
// ==/UserScript== |
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
{ | |
"name": "website-name", | |
"description": "Your website description.", | |
"scripts": {}, | |
"env": { | |
"EMBER_ENV": { | |
"value": "production" | |
}, | |
"REBUILD_ALL": { | |
"value": "true" |
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
#For a more detailed approach go to this blog post | |
#http://carloscheddar.com/setting-up-a-ghost-blog-using-docker-and-nginx-part-1/ | |
# Install Docker | |
curl -s https://get.docker.io/ubuntu/ | sudo sh | |
#Create folder to keep ghost data | |
mkdir ~/ghost-data | |
#Create Nginx data folder |
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
server { | |
listen 0.0.0.0:80; | |
server_name http://your-blog.com; #replace this line with your domain | |
access_log /var/log/nginx/your-blog.com.log; #replace this with any log name | |
location / { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header HOST $http_host; | |
proxy_set_header X-NginX-Proxy true; |