revert grpc updates
Build and Push Image / build-and-push (push) Successful in 6m58s

This commit is contained in:
2026-05-07 14:14:38 -04:00
parent 719df155fb
commit 1266518532
2 changed files with 171 additions and 168 deletions
+3
View File
@@ -47,6 +47,9 @@ pub fn MediaItem(props: MediaItemProps) -> Element
ContextMenu{
ContextMenuTrigger{
a {
onmousemove: move |e: MouseEvent|{
},
class: "mediaItem {class_string}",
href: "{HOST}{url}",
target: "_blank",
+6 -6
View File
@@ -20,13 +20,13 @@ builder.WebHost.ConfigureKestrel(o =>
o.Limits.MaxRequestBodySize = null;
#if !DEBUG
o.ListenAnyIP(8081, lo =>
{
lo.Protocols = Microsoft.AspNetCore.Server.Kestrel.Core.HttpProtocols.Http2;
});
{
lo.Protocols = Microsoft.AspNetCore.Server.Kestrel.Core.HttpProtocols.Http2;
});
o.ListenAnyIP(8080, lo =>
{
lo.Protocols = Microsoft.AspNetCore.Server.Kestrel.Core.HttpProtocols.Http1AndHttp2;
});
{
lo.Protocols = Microsoft.AspNetCore.Server.Kestrel.Core.HttpProtocols.Http1AndHttp2;
});
#endif
});
var config = builder.Configuration;