AstraOS commited on
Commit
b010f46
·
verified ·
1 Parent(s): c12b34f

Update server.js

Browse files
Files changed (1) hide show
  1. server.js +7 -2
server.js CHANGED
@@ -96,6 +96,11 @@ app.get('/', (req, res) => {
96
  res.sendFile(path.join(__dirname, 'index.html'));
97
  });
98
 
99
- app.listen(PORT, () => {
100
- console.log(`Server running on http://localhost:${PORT}`);
 
 
 
 
101
  });
 
 
96
  res.sendFile(path.join(__dirname, 'index.html'));
97
  });
98
 
99
+ // app.listen(PORT, () => {
100
+ // console.log(`Server running on http://localhost:${PORT}`);
101
+ // });
102
+
103
+ app.listen(7860, '0.0.0.0', () => {
104
+ console.log(`Server running on http://0.0.0.0:7860`);
105
  });
106
+