mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-05-24 01:13:00 -04:00
Merge pull request #4166 from balki/patch-1
Support listening on unix socket
This commit is contained in:
commit
241b56ad45
@ -395,10 +395,19 @@ class Server {
|
|||||||
})
|
})
|
||||||
router.get('/healthcheck', (req, res) => res.sendStatus(200))
|
router.get('/healthcheck', (req, res) => res.sendStatus(200))
|
||||||
|
|
||||||
|
const unixSocketPrefix = 'unix/'
|
||||||
|
if (this.Host?.startsWith(unixSocketPrefix)) {
|
||||||
|
const sockPath = this.Host.slice(unixSocketPrefix.length)
|
||||||
|
this.server.listen(sockPath, async () => {
|
||||||
|
await fs.chmod(sockPath, 0o666)
|
||||||
|
Logger.info(`Listening on unix socket ${sockPath}`)
|
||||||
|
})
|
||||||
|
} else {
|
||||||
this.server.listen(this.Port, this.Host, () => {
|
this.server.listen(this.Port, this.Host, () => {
|
||||||
if (this.Host) Logger.info(`Listening on http://${this.Host}:${this.Port}`)
|
if (this.Host) Logger.info(`Listening on http://${this.Host}:${this.Port}`)
|
||||||
else Logger.info(`Listening on port :${this.Port}`)
|
else Logger.info(`Listening on port :${this.Port}`)
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// Start listening for socket connections
|
// Start listening for socket connections
|
||||||
SocketAuthority.initialize(this)
|
SocketAuthority.initialize(this)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user