From b562854b6f377b2e38d981916145cf76b24c203b Mon Sep 17 00:00:00 2001 From: Kirill Leonov Date: Sun, 6 Apr 2025 21:21:39 +0300 Subject: [PATCH 1/2] update settings --- config/settings/development.yaml | 2 ++ config/settings/production.yaml | 2 ++ config/settings/test.yaml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/config/settings/development.yaml b/config/settings/development.yaml index 6379960..c3fd7da 100644 --- a/config/settings/development.yaml +++ b/config/settings/development.yaml @@ -1,10 +1,12 @@ wg_path: <%= ENV['WG_PATH'] || 'etc' %> wg_device: <%= ENV['WG_DEVICE'] || 'eth0' %> wg_default_address: <%= ENV['WG_DEFAULT_ADDRESS'] || '10.8.0.x' %> +wg_default_address_6: <%= ENV['WG_DEFAULT_ADDRESS_6'] || 'fdcc:ad94:bacf:61a4::cafe:x' %> wg_allowed_ips: <%= ENV['WG_ALLOWED_IPS'] || '0.0.0.0/0, ::/0' %> wg_host: <%= ENV['WG_HOST'] || '0.0.0.0' %> wg_port: <%= ENV['WG_PORT'] || '51820' %> wg_default_dns: <%= ENV['WG_DEFAULT_DNS'] || '1.1.1.1' %> +wg_default_dns_6: <%= ENV['WG_DEFAULT_DNS_6'] || '2606:4700:4700::1111' %> wg_pre_up: <%= ENV['WG_PRE_UP'] || '' %> wg_pre_down: <%= ENV['WG_PRE_DOWN'] || '' %> wg_post_up: <%= ENV['WG_POST_UP'] %> diff --git a/config/settings/production.yaml b/config/settings/production.yaml index 07bfc2a..b8dff63 100644 --- a/config/settings/production.yaml +++ b/config/settings/production.yaml @@ -1,10 +1,12 @@ wg_path: <%= ENV['WG_PATH'] || '/etc/wireguard' %> wg_device: <%= ENV['WG_DEVICE'] || 'eth0' %> wg_default_address: <%= ENV['WG_DEFAULT_ADDRESS'] || '10.8.0.x' %> +wg_default_address_6: <%= ENV['WG_DEFAULT_ADDRESS_6'] || 'fdcc:ad94:bacf:61a4::cafe:x' %> wg_allowed_ips: <%= ENV['WG_ALLOWED_IPS'] || '0.0.0.0/0, ::/0' %> wg_host: <%= ENV['WG_HOST'] %> wg_port: <%= ENV['WG_PORT'] || '51820' %> wg_default_dns: <%= ENV['WG_DEFAULT_DNS'] %> +wg_default_dns_6: <%= ENV['WG_DEFAULT_DNS_6'] || '2606:4700:4700::1111' %> wg_pre_up: <%= ENV['WG_PRE_UP'] || '' %> wg_pre_down: <%= ENV['WG_PRE_DOWN'] || '' %> wg_post_up: <%= ENV['WG_POST_UP'] %> diff --git a/config/settings/test.yaml b/config/settings/test.yaml index 22761b3..58afa6d 100644 --- a/config/settings/test.yaml +++ b/config/settings/test.yaml @@ -1,10 +1,12 @@ wg_path: 'tmp/etc' wg_device: 'eth0' wg_default_address: '10.8.0.x' +wg_default_address_6: 'fdcc:ad94:bacf:61a4::cafe:x' wg_allowed_ips: '0.0.0.0/0, ::/0' wg_host: '2.2.2.2' wg_port: '51820' wg_default_dns: '1.1.1.1' +wg_default_dns_6: '2606:4700:4700::1111' wg_persistent_keepalive: 0 auth_token: '123-Ab' webhooks_url: 'https://test.webhooks.com/event' From 970caf6195554e093ba32e1f44bae0161d6a12fa Mon Sep 17 00:00:00 2001 From: Kirill Leonov Date: Sun, 6 Apr 2025 21:34:41 +0300 Subject: [PATCH 2/2] bump version --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8721bbc..ad55eb8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v2.4.0 +v3.0.0