1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-11-08 03:01:34 -05:00

Fix unbound config

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-07-29 07:37:17 -07:00 committed by GitHub
parent 88bcc610a9
commit 0f09f6b5c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ sudo find /etc/apt/sources.list.d -type f -exec sudo sed -i 's/http:/https:/g' {
sudo apt update
sudo apt upgrade -y
sudo apt install -y --no-install-recommends tuned unbound ufw
sudo apt install -y --no-install-recommends tuned unbound resolvconf ufw
sudo ufw enable
sudo ufw allow 22/tcp
@ -20,6 +20,7 @@ sudo tuned-adm profile virtual-guest
echo 'server:
trust-anchor-signaling: yes
root-key-sentinel: yes
tls-cert-bundle: /etc/ssl/certs/ca-certificates.crt
hide-identity: yes
hide-trustanchor: yes
@ -86,6 +87,7 @@ BindReadOnlyPaths=-/dev/urandom:@UNBOUND_CHROOT_DIR@/dev/urandom
BindPaths=-/dev/log:@UNBOUND_CHROOT_DIR@/dev/log' | sudo tee /etc/systemd/system/unbound.service.d/override.conf
sudo systemctl restart unbound
sudo systemctl disable --now systemd-resolved
sudo mkdir -p /etc/systemd/system/sshd.service.d
sudo curl https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/systemd/system/sshd.service.d/limits.conf -o /etc/systemd/system/sshd.service.d/limits.conf