From 0d9e8e7bf857a064a3072d590fbafba7f396c105 Mon Sep 17 00:00:00 2001
From: John-Paul Robinson <jpr@uab.edu>
Date: Fri, 28 Sep 2018 10:22:28 -0500
Subject: [PATCH] Update vagrant file to open ports for http/https

We need to be able to test both http and https configurations
since https with be the default for ood (http is only for dev).
Also remove the unused host rename config.
---
 Vagrantfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Vagrantfile b/Vagrantfile
index a7a6859..38bd4e3 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -16,7 +16,10 @@ Vagrant.configure("2") do |config|
     ood.vm.box_version = "1"
     ood.vm.hostname = "ood"
     ood.vm.network "private_network", ip: "10.1.1.254", virtualbox__intnet: "compute"
-    #ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"]
+    ood.vm.network "forwarded_port", guest: 80, host: 8080,
+      auto_correct: true
+    ood.vm.network "forwarded_port", guest: 443, host: 8443,
+      auto_correct: true
   end
 
 
-- 
GitLab