Revert to route only domains

Resolution sometimes fails as HTTPS requests are not possible yet to
some domains. This causes HTTP requests to fail later on. Can be reproduced
by doing a HTTPS request first (for a domain configured without HTTPS) and retrying
with a HTTP request afterwards.
This commit is contained in:
Sonny Bakker 2025-04-26 09:48:58 +02:00
parent 4fc4f2712b
commit c5c7c8ce88
6 changed files with 18 additions and 18 deletions

View file

@ -5,11 +5,11 @@ vpn_default:
interface: wg0
dns: 10.0.0.1
domains:
- 'vpn.{{ server_domain }}'
- 'transmission.{{ server_domain }}'
- 'syncthing.{{ server_domain }}'
- 'radicale.{{ server_domain }}'
- 'mpd.{{ server_domain }}'
- '~vpn.{{ server_domain }}'
- '~transmission.{{ server_domain }}'
- '~syncthing.{{ server_domain }}'
- '~radicale.{{ server_domain }}'
- '~mpd.{{ server_domain }}'
public_key_path: '{{ vpn_config_dir }}/keys/public/default/desktop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/default/desktop.key'
@ -33,8 +33,8 @@ vpn_media:
interface: wg1
dns: 10.0.1.1
domains:
- 'media-vpn.{{ server_domain }}'
- 'jellyfin.{{ server_domain }}'
- '~media-vpn.{{ server_domain }}'
- '~jellyfin.{{ server_domain }}'
public_key_path: '{{ vpn_config_dir }}/keys/public/media/desktop.pub'
private_key_path: '{{ vpn_config_dir }}/keys/private/media/desktop.key'