Skip to content

Commit

Permalink
Changes default IP address to 127.0.0.1. Closes #396 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
waldekmastykarz authored Nov 28, 2023
1 parent 1adbe64 commit 51fa823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-proxy/ProxyConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 51fa823

Please sign in to comment.