summarylogtreecommitdiffstats
path: root/wireguard_config
diff options
context:
space:
mode:
authorDavid Harrigan2021-01-25 15:53:50 +0000
committerDavid Harrigan2021-01-25 15:53:50 +0000
commit9114e75a97cf792d2c3767a43c765bfb882497ea (patch)
treeb464059dbfb284ede90a5ec94aadb8c4b9953fbc /wireguard_config
parent702fcdea6db270c65118b439fd5a586b8e08ab68 (diff)
downloadaur-9114e75a97cf792d2c3767a43c765bfb882497ea.tar.gz
upgpkg: mkinitcpio-wireguard 0.4.1-3
Split out source from packaging. -=david=-
Diffstat (limited to 'wireguard_config')
-rw-r--r--wireguard_config34
1 files changed, 0 insertions, 34 deletions
diff --git a/wireguard_config b/wireguard_config
deleted file mode 100644
index 758a108d2d9d..000000000000
--- a/wireguard_config
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-# Information pertaining to the Wireguard mkinitcpio hook
-#
-# Please ensure you've read the documentation on how to setup and configure
-# Wireguard for your needs. It's vital that you ensure that you can connect
-# successfully before working on enabling remote unlocking functionality.
-
-# All the values below are just examples. You must change them to suit
-# your Wireguard network setup.
-
-# Specifies the name of the Wireguard interface (usually wg0)
-INTERFACE=wg0
-
-# Specifies the address that the Wireguard interface will use.
-# Please ensure you specify the address in CIDR format.
-INTERFACE_ADDR=10.0.200.21/32
-
-# This is the public key of the peer.
-PEER_PUBLIC_KEY=abcdefg
-
-# This is the IP address and port of the peer.
-# Usually this is the external public-facing IP, but it may also be internal!
-PEER_ENDPOINT=192.168.80.1:12912
-
-# This is your private key previously setup to establish connection to the peer.
-PRIVATE_KEYFILE=/etc/wireguard/initcpio/privatekey
-
-# If you're behind a NAT, a ping of 25 seconds is useful!
-PERSISTENT_KEEPALIVES=25
-
-# The IP range that will be allowed.
-ALLOWED_IPS=10.0.200.0/24
-
-# vim:set syntax=sh tw=78: