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
upstream projects { | |
server 0.0.0.0:8000; | |
} | |
server { | |
listen 80 default_server; | |
#listen [::]:80 default_server ipv6only=on; | |
# SSL configuration | |
# 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
#!/usr/bin/env node | |
var plan = require('flightplan'); | |
// configuration | |
plan.target('staging', [{ | |
host: 'YOUR SERVER IP', | |
port: 22, | |
username: 'USER', | |
privateKey: '~/.ssh/id_rsa' | |
agent: process.env.SSH_AUTH_SOCK, |
NewerOlder