Skip to content

Instantly share code, notes, and snippets.

filter {
grok {
match => [
"message", "<%{INT:syslog_pri}>%{SYSLOGTIMESTAMP:timestamp} %{PROG:program}: %{GREEDYDATA:message}"
]
overwrite => [ "message" ]
add_tag => [ "pfsense" ]
}
syslog_pri {}
curl https://letsencrypt.org/certs/isrgrootx1.pem.txt -o isgrootx1.pem
sudo cp isgrootx1.pem /etc/pki/ca-trust/source/anchors/
curl https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt -o lets-encrypt-x3-cross-signed.pem
sudo cp lets-encrypt-x3-cross-signed.pem /etc/pki/ca-trust/source/anchors/
sudo update-ca-trust
@bndabbs
bndabbs / jqplay-compose.yml
Created May 12, 2022 15:16
Self-host jqplay with Docker Compose
# Clone https://github.com/owenthereal/jqplay and then save this compose file into the cloned directory
version: "3.0"
services:
jqplay:
build: .
restart: always
environment:
DATABASE_URL: "postgresql://postgres@db:5432"