Update app.js
Browse files
app.js
CHANGED
|
@@ -110,5 +110,5 @@ app.get('/proxy-url/d/:key', async (req, res) => {
|
|
| 110 |
// Health check
|
| 111 |
app.get('/health', (req, res) => res.send('OK'));
|
| 112 |
|
| 113 |
-
const PORT = process.env.PORT ||
|
| 114 |
app.listen(PORT, () => console.log(`AIO Downloader running on port ${PORT}`));
|
|
|
|
| 110 |
// Health check
|
| 111 |
app.get('/health', (req, res) => res.send('OK'));
|
| 112 |
|
| 113 |
+
const PORT = process.env.PORT || 7860;
|
| 114 |
app.listen(PORT, () => console.log(`AIO Downloader running on port ${PORT}`));
|