aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Garrelou <simon@sixfoisneuf.fr>2023-05-24 22:00:07 +0200
committerSimon Garrelou <simon@sixfoisneuf.fr>2023-05-24 22:00:07 +0200
commita7dce9b75a2a30cf1010b55a3306f8abc8782779 (patch)
tree794c7ade9d8f29932187c3e38ec385f537eba6a1
parent0df7459ab08acce1fb983f9e00026c4695e8fc19 (diff)
downloadwgmgr-a7dce9b75a2a30cf1010b55a3306f8abc8782779.tar.gz
wgmgr-a7dce9b75a2a30cf1010b55a3306f8abc8782779.zip
Fix sample TOML strings
-rw-r--r--README.md4
1 files 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`:
20 20
21```toml 21```toml
22wgconf = "/etc/wireguard/wg0.conf" # path to your Wireguard configuration file 22wgconf = "/etc/wireguard/wg0.conf" # path to your Wireguard configuration file
23endpoint = 1.2.3.4 # IP address of the server 23endpoint = "1.2.3.4" # IP address of the server
24port = 6789 # optional, uses 51820 by default 24port = 6789 # optional, uses 51820 by default
25dns = 8.8.8.8 # optional 25dns = "8.8.8.8" # optional
26``` 26```
27 27
28Your Wireguard configuration file must already exist and be valid. A sample configuration file is as follows: 28Your Wireguard configuration file must already exist and be valid. A sample configuration file is as follows: