diff --git a/client.conf b/client.conf index 88a5f97..369b4a1 100644 --- a/client.conf +++ b/client.conf @@ -20,7 +20,7 @@ "settings": { "vnext": [ { - "address": "nocturne.quacker.net", + "address": "{{ server_name }}", "port": 443, "users": [ { diff --git a/setup.py b/setup.py index 07ce19f..ff9122f 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,7 @@ def main(): with open("client.conf", "r") as file: template = jinja2.Template(file.read()) - output = template.render(uuid = v_uuid, path = v_path) + output = template.render(uuid = v_uuid, path = v_path, server_name = server_name) with open("client.conf", "w") as file: file.write(output)