From 51fa82353b401042ee08c7540e536b00f4ee192c Mon Sep 17 00:00:00 2001 From: Waldek Mastykarz Date: Tue, 28 Nov 2023 17:25:45 +0100 Subject: [PATCH] Changes default IP address to 127.0.0.1. Closes #396 (#397) --- dev-proxy/ProxyConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-proxy/ProxyConfiguration.cs b/dev-proxy/ProxyConfiguration.cs index 4ef7a703..b7b65aee 100644 --- a/dev-proxy/ProxyConfiguration.cs +++ b/dev-proxy/ProxyConfiguration.cs @@ -10,7 +10,7 @@ public class ProxyConfiguration: IProxyConfiguration { [JsonPropertyName("port")] public int Port { get; set; } = 8000; [JsonPropertyName("ipAddress")] - public string? IPAddress { get; set; } + public string? IPAddress { get; set; } = "127.0.0.1"; [JsonPropertyName("labelMode")] [JsonConverter(typeof(JsonStringEnumConverter))] public LabelMode LabelMode { get; set; } = LabelMode.Text;