We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f89cd64 commit 3ec5ff2Copy full SHA for 3ec5ff2
src/servers/railway/minimal.ts
@@ -10,7 +10,7 @@ const PORT = process.env.PORT || 3000;
10
const server = http.createServer((req, res) => {
11
console.log(`${new Date().toISOString()} ${req.method} ${req.url}`);
12
13
- if (req.url === '/health') {
+ if (req.url === '/health' || req.url === '/api/health') {
14
res.writeHead(200, { 'Content-Type': 'application/json' });
15
res.end(
16
JSON.stringify({
0 commit comments