If the configuration file contains relative paths (e.g. in the values

for private_key_path or derp_map_path), interpret them as relative to
the directory where the config.json file was read from.
This commit is contained in:
Ward Vandewege
2021-04-22 21:10:50 -04:00
parent 9c40e829ec
commit 683b151f19
2 changed files with 18 additions and 4 deletions

View File

@@ -2,10 +2,10 @@
"server_url": "http://192.168.1.12:8000",
"listen_addr": "0.0.0.0:8000",
"private_key_path": "private.key",
"derp_map_path": "./derp.yaml",
"derp_map_path": "derp.yaml",
"db_host": "localhost",
"db_port": 5432,
"db_name": "headscale",
"db_user": "foo",
"db_pass": "bar"
}
}