Revert "Added http/https protocol detection"

This reverts commit f01d912212.
This commit is contained in:
Ahmed Sabbour 2019-02-12 19:09:22 -08:00
Родитель 86eb75ba46
Коммит 37d8e98823
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -3,8 +3,7 @@ var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
var protocol = req.secure ? "https" : "http";
res.render('index', { title: 'Orders', captureOrderService: protocol+"://"+process.env.CAPTUREORDERSERVICEIP+"/v1/order" });
res.render('index', { title: 'Orders', captureOrderService: "http://"+process.env.CAPTUREORDERSERVICEIP+"/v1/order" });
});
module.exports = router;