mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-29 18:33:05 +00:00
1. add noise key to config file
2. lower node check interval
This commit is contained in:
parent
35dd9209b9
commit
ce4a1cf447
2 changed files with 6 additions and 2 deletions
|
@ -20,7 +20,7 @@ dns_config:
|
||||||
nameservers:
|
nameservers:
|
||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
ephemeral_node_inactivity_timeout: 30m
|
ephemeral_node_inactivity_timeout: 30m
|
||||||
node_update_check_interval: 100s
|
node_update_check_interval: 30s
|
||||||
grpc_allow_insecure: false
|
grpc_allow_insecure: false
|
||||||
grpc_listen_addr: :50443
|
grpc_listen_addr: :50443
|
||||||
ip_prefixes:
|
ip_prefixes:
|
||||||
|
@ -38,6 +38,8 @@ oidc:
|
||||||
- email
|
- email
|
||||||
strip_email_domain: true
|
strip_email_domain: true
|
||||||
private_key_path: private.key
|
private_key_path: private.key
|
||||||
|
noise:
|
||||||
|
private_key_path: noise_private.key
|
||||||
server_url: http://headscale:18080
|
server_url: http://headscale:18080
|
||||||
tls_client_auth_mode: relaxed
|
tls_client_auth_mode: relaxed
|
||||||
tls_letsencrypt_cache_dir: /var/www/.cache
|
tls_letsencrypt_cache_dir: /var/www/.cache
|
||||||
|
|
|
@ -2,7 +2,7 @@ log_level: trace
|
||||||
acl_policy_path: ""
|
acl_policy_path: ""
|
||||||
db_type: sqlite3
|
db_type: sqlite3
|
||||||
ephemeral_node_inactivity_timeout: 30m
|
ephemeral_node_inactivity_timeout: 30m
|
||||||
node_update_check_interval: 100s
|
node_update_check_interval: 30s
|
||||||
ip_prefixes:
|
ip_prefixes:
|
||||||
- fd7a:115c:a1e0::/48
|
- fd7a:115c:a1e0::/48
|
||||||
- 100.64.0.0/10
|
- 100.64.0.0/10
|
||||||
|
@ -14,6 +14,8 @@ dns_config:
|
||||||
- 1.1.1.1
|
- 1.1.1.1
|
||||||
db_path: /tmp/integration_test_db.sqlite3
|
db_path: /tmp/integration_test_db.sqlite3
|
||||||
private_key_path: private.key
|
private_key_path: private.key
|
||||||
|
noise:
|
||||||
|
private_key_path: noise_private.key
|
||||||
listen_addr: 0.0.0.0:18080
|
listen_addr: 0.0.0.0:18080
|
||||||
metrics_listen_addr: 127.0.0.1:19090
|
metrics_listen_addr: 127.0.0.1:19090
|
||||||
server_url: http://headscale:18080
|
server_url: http://headscale:18080
|
||||||
|
|
Loading…
Reference in a new issue