syslog: change it to unix domain socket

docker is using a extra udp port for every container. when there is
a lot of containers, a lot of random udp ports get used up. this causes
problems when installing apps that require contiguous port ranges
This commit is contained in:
Girish Ramakrishnan
2024-03-21 17:30:50 +01:00
parent 8e07b3c96d
commit 104997d77c
10 changed files with 40 additions and 34 deletions
+1 -2
View File
@@ -5,8 +5,7 @@
const server = require('./server.js');
const options = {
logFolder: process.argv[2] || '/home/yellowtent/platformdata/logs',
port: 2514
logFolder: '/home/yellowtent/platformdata/logs',
};
async function main() {