This commit is contained in:
Kameron Kenny 2024-06-07 18:09:17 -04:00
parent c1cef0864e
commit 88b55ee073
No known key found for this signature in database
GPG Key ID: E5006629839D2276
3 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM lscr.io/linuxserver/syslog-ng:latest FROM lscr.io/linuxserver/syslog-ng:latest
LABEL version="20240607.1.4" LABEL version="20240607.1.5"
LABEL description="syslog-ng" LABEL description="syslog-ng"
RUN mkdir -p /config RUN mkdir -p /config

View File

@ -33,6 +33,7 @@ destination d_unifi_firewall {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_firewall")
); );
}; };
@ -43,6 +44,7 @@ destination d_unifi_dnsmasq {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_dnsmasq")
); );
}; };
@ -53,6 +55,7 @@ destination d_unifi_systemd {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_systemd")
); );
}; };
@ -63,6 +66,7 @@ destination d_unifi_stahtd {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_stahtd")
); );
}; };
@ -73,6 +77,7 @@ destination d_unifi_mcad {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_mcad")
); );
}; };
@ -83,6 +88,7 @@ destination d_unifi_hostapd {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_hostapd")
); );
}; };
@ -93,6 +99,7 @@ destination d_unifi_wlan {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_unifi_wlan")
); );
}; };
@ -103,6 +110,7 @@ destination d_syslog_ng_es {
user("elastic") user("elastic")
password("forty6and2") password("forty6and2")
url("http://pi501.in.thelinuxpro.net:9200/_bulk") url("http://pi501.in.thelinuxpro.net:9200/_bulk")
persist-name("d_syslog_ng_es")
); );
}; };

View File

@ -10,7 +10,7 @@ services:
syslog-ng: syslog-ng:
build: build:
dockerfile: Dockerfile dockerfile: Dockerfile
image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240607.1.4 image: docker-registry1.in.thelinuxpro.net:5000/tlp/syslog-ng:240607.1.5
container_name: syslog-ng container_name: syslog-ng
environment: environment:
- PUID=0 - PUID=0