This commit is contained in:
briandavidjoyner 2017-11-04 17:31:02 -04:00
parent e4c23aa232
commit 29f248ed09
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ 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!');
});