From 18c253eeda2792a52d764deb908e4b5c3aa56518 Mon Sep 17 00:00:00 2001 From: Bill Cromie Date: Tue, 20 Dec 2016 16:32:06 -0500 Subject: [PATCH] adding a fully qualified domain name for the hostname and ignoring the .vagrant dir (#1027) --- .gitignore | 1 + Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e22c1d9f..f3cdb1bc 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ management/__pycache__/ tools/__pycache__/ externals/ .env +.vagrant diff --git a/Vagrantfile b/Vagrantfile index c6610402..39264100 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -9,7 +9,7 @@ Vagrant.configure("2") do |config| # to the public web. However, we currently don't want to expose SSH since # the machine's box will let anyone log into it. So instead we'll put the # machine on a private network. - config.vm.hostname = "mailinabox" + config.vm.hostname = "mailinabox.lan" config.vm.network "private_network", ip: "192.168.50.4" config.vm.provision :shell, :inline => <<-SH