From 64ec3e48b440b2ff267ddec95ee0510fa16185ed Mon Sep 17 00:00:00 2001 From: Lukas Stancik Date: Mon, 17 Mar 2025 17:41:08 +0000 Subject: [PATCH] Fix paths to decrypted secrets --- src/hotspot.conf | 2 +- src/wg0.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hotspot.conf b/src/hotspot.conf index 205230a..aa2aef0 100644 --- a/src/hotspot.conf +++ b/src/hotspot.conf @@ -2,7 +2,7 @@ DisableHT=true [Security] -Passphrase=<% cat src/wifi-password.txt %> +Passphrase=<% cat secrets/wifi-password.txt %> [IPv4] Address=<%= $wlan0_address %> diff --git a/src/wg0.conf b/src/wg0.conf index d4c3651..ced89cb 100644 --- a/src/wg0.conf +++ b/src/wg0.conf @@ -1,12 +1,12 @@ [Interface] ListenPort = <%= $wg_port %> -PrivateKey = <%= $(cat src/wireguard.private.key) %> +PrivateKey = <%= $(cat secrets/wireguard.private.key) %> Address = <%= $wg0_address %> DNS = <%= $wg0_gateway %> MTU = 1280 [Peer] -PublicKey = <%= $(cat src/wireguard.public.key) %> +PublicKey = <%= $(cat secrets/wireguard.public.key) %> Endpoint = <%= $wg_server %>:<%= $wg_port %> AllowedIPs = 0.0.0.0/0 PersistentKeepalive = 25