mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2024-12-28 03:41:58 +00:00
Merge pull request #35 from Jaculabilis/ipp-port
Make port configurable via IPP_PORT
This commit is contained in:
commit
fb1548a588
1 changed files with 3 additions and 2 deletions
|
@ -146,6 +146,7 @@ app.get('*', (req, res) => {
|
||||||
})
|
})
|
||||||
|
|
||||||
// Start the ExpressJS server
|
// Start the ExpressJS server
|
||||||
app.listen(3000, () => {
|
const port = process.env.IPP_PORT || 3000;
|
||||||
console.log(dayjs().format() + ' Server started')
|
app.listen(port, () => {
|
||||||
|
console.log(dayjs().format() + ' Server started on port ' + port)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue