Showing
1 changed file
with
2 additions
and
3 deletions
| ... | @@ -44,7 +44,7 @@ connection = mysql.createConnection({ | ... | @@ -44,7 +44,7 @@ connection = mysql.createConnection({ |
| 44 | host : 'localhost', | 44 | host : 'localhost', |
| 45 | user : 'root', | 45 | user : 'root', |
| 46 | password : 'password', | 46 | password : 'password', |
| 47 | - port : 3306, | 47 | + port : 9000, |
| 48 | database : 'YTMT' | 48 | database : 'YTMT' |
| 49 | }); | 49 | }); |
| 50 | 50 | ||
| ... | @@ -81,6 +81,5 @@ app.use(function(err, req, res, next) { | ... | @@ -81,6 +81,5 @@ app.use(function(err, req, res, next) { |
| 81 | res.render('error'); | 81 | res.render('error'); |
| 82 | }); | 82 | }); |
| 83 | 83 | ||
| 84 | -var server = app.listen(3000); | 84 | +var server = app.listen(9000); |
| 85 | module.exports = app; | 85 | module.exports = app; |
| 86 | - | ... | ... |
-
Please register or login to post a comment