我在我的Linux系统上使用centOS托管了一个基本的Web服务器,并尝试在同一网络上的Windows系统上访问它。但每次投掷连接都会在我的浏览器中超时。 这是js文件的代码:
express = require('express') app = express()
app.get('/', function (req, res) { res.send('Hello World!') })
app.listen(4013,'0.0.0.0', function () { console.log('Example app listening on port 4013!') })
在我的Windows系统上,我能够ping通linux系统的地址,但在浏览器中打开它时无效。需要进行哪些更改或解决方案?