mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-27 17:58:57 +00:00
Add hostname configuration to docker-compose
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
const PORT = process.env.PORT || 3000;
|
const PORT = process.env.PORT || 3000;
|
||||||
|
const HOSTNAME = process.env.HOSTNAME || "0.0.0.0"
|
||||||
Bun.serve({
|
Bun.serve({
|
||||||
|
hostname: HOSTNAME,
|
||||||
port: PORT,
|
port: PORT,
|
||||||
fetch(req) {
|
fetch(req) {
|
||||||
const url = new URL(req.url);
|
const url = new URL(req.url);
|
||||||
@@ -13,4 +15,4 @@ Bun.serve({
|
|||||||
return new Response("404!");
|
return new Response("404!");
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
console.log(`Server running at http://localhost:${PORT}`);
|
console.log(`Server running at http://${HOSTNAME}:${PORT}`);
|
||||||
Reference in New Issue
Block a user