Skip to content

Commit e6d15f6

Browse files
committed
changed port to listener
1 parent 336a109 commit e6d15f6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/DigmaSSEServer/Program.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@
2121
.WithHttpTransport() // OR WithStdioServerTransport()
2222
.WithTools<CodeObservabilityTool>();
2323

24-
builder.WebHost.ConfigureKestrel(k =>
25-
{
26-
k.ListenAnyIP(5194);
27-
});
28-
2924
var app = builder.Build();
3025
var authOptions = app.Services.GetRequiredService<IOptions<AuthOptions>>();
3126
if (string.IsNullOrWhiteSpace(authOptions.Value.Token))

src/DigmaSSEServer/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Kestrel": {
99
"Endpoints": {
1010
"Http": {
11-
"Url": "http://0.0.0.0:3000"
11+
"Url": "http://0.0.0.0:5194"
1212
}
1313
}
1414
},

0 commit comments

Comments
 (0)