1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 03:41:58 +00:00

Make port configurable via IPP_PORT

This commit is contained in:
Tim Van Baak 2024-11-28 11:31:22 -08:00
parent d1475538c5
commit 89f468418c

View file

@ -146,6 +146,7 @@ app.get('*', (req, res) => {
})
// Start the ExpressJS server
app.listen(3000, () => {
console.log(dayjs().format() + ' Server started')
const port = process.env.IPP_PORT || 3000;
app.listen(port, () => {
console.log(dayjs().format() + ' Server started on port ' + port)
})