This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter { | |
grok { | |
match => [ | |
"message", "<%{INT:syslog_pri}>%{SYSLOGTIMESTAMP:timestamp} %{PROG:program}: %{GREEDYDATA:message}" | |
] | |
overwrite => [ "message" ] | |
add_tag => [ "pfsense" ] | |
} | |
syslog_pri {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
OlderNewer