Skip to content

Instantly share code, notes, and snippets.

@vinzenzweber
Last active July 19, 2016 08:55
Show Gist options
  • Save vinzenzweber/7d5d5422c9154c4bb0f5b77ad8d693f0 to your computer and use it in GitHub Desktop.
Save vinzenzweber/7d5d5422c9154c4bb0f5b77ad8d693f0 to your computer and use it in GitHub Desktop.
Meteor mupx settings for EC2 using SSL certificates
{
"servers": [
{
"host": "myapplication.com",
"username": "ubuntu",
"pem": "~/.ssh/keypair.pem"
}
],
"setupMongo": true,
"setupNode": true,
"nodeVersion": "0.10.41",
"setupPhantom": false,
"enableUploadProgressBar": true,
"appName": "myapplication",
"app": ".",
"env": {
"PORT": 80,
"ROOT_URL": "https://www.myapplication.com"
},
"ssl": {
"certificate": "/etc/letsencrypt/live/myapplication.com/fullchain.pem",
"key": "/etc/letsencrypt/live/myapplication.com/privkey.pem",
"port": 443
},
"deployCheckWaitTime": 60
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment