replace Tinc VPN with WireGuard
https://github.com/status-im/infra-hq/issues/58 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
c3b51f0799
commit
e85230e6d7
|
@ -39,8 +39,8 @@ geth_rpc_vhosts:
|
|||
- '{{ geth_cont_name }}'
|
||||
- '{{ geth_rpc_extra_vhost }}'
|
||||
- '{{ hostname }}'
|
||||
- '{{ hostname }}.tinc'
|
||||
- '{{ ansible_local.tinc.vpn_ip }}'
|
||||
- '{{ hostname }}.wg'
|
||||
- '{{ ansible_local.wireguard.vpn_ip }}'
|
||||
# Wrapper for easier RPC usage
|
||||
get_rpc_wrapper: '{{ geth_service_path }}/rpc.sh'
|
||||
# Web Sockets API
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
- name: '{{ geth_cont_name }}-rpc'
|
||||
tags: '{{ geth_consul_tags + ["rpc"] }}'
|
||||
port: '{{ geth_rpc_port }}'
|
||||
address: '{{ ansible_local.tinc.vpn_ip }}'
|
||||
address: '{{ ansible_local.wireguard.vpn_ip }}'
|
||||
meta:
|
||||
env: '{{ env }}'
|
||||
stage: '{{ stage }}'
|
||||
|
@ -34,7 +34,7 @@
|
|||
- name: '{{ geth_cont_name }}-ws'
|
||||
tags: '{{ geth_consul_tags + ["websocket"] }}'
|
||||
port: '{{ geth_websocket_port }}'
|
||||
address: '{{ ansible_local.tinc.vpn_ip }}'
|
||||
address: '{{ ansible_local.wireguard.vpn_ip }}'
|
||||
meta:
|
||||
env: '{{ env }}'
|
||||
stage: '{{ stage }}'
|
||||
|
|
Loading…
Reference in New Issue