diff --git a/sample-config/clients.json b/sample-config/clients.json new file mode 100644 index 0000000..68a886b --- /dev/null +++ b/sample-config/clients.json @@ -0,0 +1,14 @@ +{ + "Date": "2024-06-10T09:22:29.047338443+02:00", + "List": [ + { + "Username": "sample_user", + "UID": "1000", + "GID": "1000", + "OperatingSystem": "linux", + "Hostname": "sample_hostname", + "PublicIP": "127.0.0.1", + "LocalIP": "127.0.0.1" + } + ] +} diff --git a/sample-config/tiamat.toml b/sample-config/tiamat.toml new file mode 100644 index 0000000..ccc8030 --- /dev/null +++ b/sample-config/tiamat.toml @@ -0,0 +1,9 @@ +[Server] +# Port to use for web interface +#WebPort = "8080" + +# Port to use for communicating with clients +#Port = "1302" + +# Path to look for clients in +#ClientPath = "/home/raul/.config/tiamat/clients.json" diff --git a/tiamat.toml.example b/tiamat.toml.example deleted file mode 100644 index 9bf85dd..0000000 --- a/tiamat.toml.example +++ /dev/null @@ -1,4 +0,0 @@ -[Server] -WebPort = "8080" -Port = "1302" -ClientPath = "/home/raul/.config/tiamat/clients.json"