From a7dce9b75a2a30cf1010b55a3306f8abc8782779 Mon Sep 17 00:00:00 2001 From: Simon Garrelou Date: Wed, 24 May 2023 22:00:07 +0200 Subject: Fix sample TOML strings --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 404febc..5882912 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,9 @@ Create the application configuration file, at `/etc/wgmgr.toml`: ```toml wgconf = "/etc/wireguard/wg0.conf" # path to your Wireguard configuration file -endpoint = 1.2.3.4 # IP address of the server +endpoint = "1.2.3.4" # IP address of the server port = 6789 # optional, uses 51820 by default -dns = 8.8.8.8 # optional +dns = "8.8.8.8" # optional ``` Your Wireguard configuration file must already exist and be valid. A sample configuration file is as follows: -- cgit v1.2.3