We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336a109 commit e6d15f6Copy full SHA for e6d15f6
src/DigmaSSEServer/Program.cs
@@ -21,11 +21,6 @@
21
.WithHttpTransport() // OR WithStdioServerTransport()
22
.WithTools<CodeObservabilityTool>();
23
24
-builder.WebHost.ConfigureKestrel(k =>
25
-{
26
- k.ListenAnyIP(5194);
27
-});
28
-
29
var app = builder.Build();
30
var authOptions = app.Services.GetRequiredService<IOptions<AuthOptions>>();
31
if (string.IsNullOrWhiteSpace(authOptions.Value.Token))
src/DigmaSSEServer/appsettings.json
@@ -8,7 +8,7 @@
8
"Kestrel": {
9
"Endpoints": {
10
"Http": {
11
- "Url": "http://0.0.0.0:3000"
+ "Url": "http://0.0.0.0:5194"
12
}
13
14
},
0 commit comments