Yes, I sent an email. Also pro module Volo.Abp.LeptonXTheme is not available for download either. Can you also share this module with me?
I need to have access to source code of this module for current preview v6.0.0-rc.2 now. Can you share with me?
Volo.Abp.OpenIddict.Pro
One of the templates (module-pro) in v6.0.0-rc.2 has reference to Volo.Abp.OpenIddict.Pro package. I don't see this module from the module list and couldn't find a way to download the source code for this module. Can you assist me of how to download this source code for module Volo.Abp.OpenIddict.Pro?
Can you share the v6 source code?
Hi, can you assist me on how to download the source code for @volo/abp.commercial.ng.ui?
I've received the instruction for this question before. However, it was for v4. What is the instruction for v6? and would the source code for this version be different?
Volo.Abp.Commercial.SuiteTemplates Volo.Abp.Commercial.Core.csproj Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial.csproj
These packages are not included in the commercial modules.
I'm building the solution from source codes. If I don't need to include these packages/source code, how can I remove?
You can completely remove the unneeded code from the solution
I suppose by removing these packages, it won't remove/impact functionalities. Is that correct?
Where can I find the source code for the following packages:
If you're creating a bug/problem report, please include followings: I'm building the solution from source codes. If I don't need to include these packages/source code, how can I remove?
Hi,
Is there a Github repos for commerical? If, how do I access to those?
-Truong
Any progress on this issue?
Hi, I'm having issue running the microservice template with blazor server ui running inside kubernetes. I was able to have all services and auth-server running fine inside kubernetes. Blazor Server UI runs fine if spec.replicas
= 1; however, if I have Blazor Server spec.replicas
> 1, I'd get a websocket connection failed from the browser. I've tried the following but none successful:
Environments:
BlazorModule.cs
public override void PreConfigureServices(ServiceConfigurationContext context)
{
...
context.Services.PreConfigure<ISignalRServerBuilder>(builder =>
{
builder.AddStackExchangeRedis(configuration["Redis:Configuration"], options =>
{
options.Configuration.ChannelPrefix = "Blazor-Channel";
});
});
}
public override void ConfigureServices(ServiceConfigurationContext context)
{
...
context.Services.Configure<ForwardedHeadersOptions>(options =>
{
options.ForwardedHeaders =
ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
});
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
...
app.UseCookiePolicy(); // added this, Before UseAuthentication or anything else that writes cookies.
app.UseForwardedHeaders();
}
Ingress.yml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: blazor-ingress
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/ssl-redirect: "true"
nginx.ingress.kubernetes.io/rewrite-target: /$1
nginx.ingress.kubernetes.io/use-regex: "true"
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/affinity: "cookie"
nginx.ingress.kubernetes.io/session-cookie-name: "affinity"
nginx.ingress.kubernetes.io/session-cookie-expires: "14400"
nginx.ingress.kubernetes.io/session-cookie-max-age: "14400"
nginx.ingress.kubernetes.io/session-cookie-hash: "sha1"
If you're creating a bug/problem report, please include followings: