diff options
author | kawax <kawaxbiz@gmail.com> | 2017-05-03 23:59:51 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-03 16:59:51 +0200 |
commit | dd9d57300ba3b6df91ef6398d8c369437cc2a9c7 (patch) | |
tree | 3bdb02952ee9b2140758d6e89d344a6719a1b1be | |
parent | 8c5ad23b24b17efc0660928d0b02ddbebc6f2939 (diff) |
Vagrantfile: node 6 (#2752)
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 6d7004faf..d58ef78fd 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,7 +10,7 @@ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main' # Add repo for NodeJS -curl -sL https://deb.nodesource.com/setup_4.x | sudo bash - +curl -sL https://deb.nodesource.com/setup_6.x | sudo bash - # Add firewall rule to redirect 80 to 3000 and save sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3000 |