This commit is contained in:
briandavidjoyner 2017-11-04 17:47:39 -04:00
parent 29f248ed09
commit 5323a4795e

View file

@ -12,9 +12,9 @@ var port = process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || 8080;
webapp.use(morgan('combined'));
//External Routing
webapp.get('*', function (req, res) {
webapp.get('/', function (req, res) {
console.log('works still?');
res.send('Hello World!');
res.send('Hello World Again!');
});
//webapp.use('/public', express.static(__dirname + '/public'));