1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Merge pull request #8 from cure/relative-paths-in-config

Handle relative paths in private_key_path and derp_map_path
This commit is contained in:
Juan Font 2021-04-23 09:40:52 +02:00 committed by GitHub
commit 328f6ea455
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 4 deletions

View File

@ -5,6 +5,8 @@ import (
"io"
"log"
"os"
"path/filepath"
"strings"
"time"
"github.com/hako/durafmt"
@ -280,8 +282,20 @@ func main() {
}
func absPath(path string) string {
// If a relative path is provided, prefix it with the the directory where
// the config file was found.
if !strings.HasPrefix(path, "/") {
dir, _ := filepath.Split(viper.ConfigFileUsed())
if dir != "" {
path = dir + "/" + path
}
}
return path
}
func getHeadscaleApp() (*headscale.Headscale, error) {
derpMap, err := loadDerpMap(viper.GetString("derp_map_path"))
derpMap, err := loadDerpMap(absPath(viper.GetString("derp_map_path")))
if err != nil {
log.Printf("Could not load DERP servers map file: %s", err)
}
@ -289,7 +303,7 @@ func getHeadscaleApp() (*headscale.Headscale, error) {
cfg := headscale.Config{
ServerURL: viper.GetString("server_url"),
Addr: viper.GetString("listen_addr"),
PrivateKeyPath: viper.GetString("private_key_path"),
PrivateKeyPath: absPath(viper.GetString("private_key_path")),
DerpMap: derpMap,
DBhost: viper.GetString("db_host"),

View File

@ -2,7 +2,7 @@
"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",