vu.dh@veek.vn的活动

Hello vu.dh@veek.vn,

Please try this,

app.Use((ctx, next) => 
 
        { 
 
            ctx.Request.Scheme = "https"; 
 
            return next(ctx); 
 
        }); 

This code needs to be added in " public override void OnApplicationInitialization(ApplicationInitializationContext context) " in this file - **AuthServerModule.cs

Please do let me know if this solution works.

Thanks, Anjali

The issue relates to Nginx configure, I fixed it, thanks for your support.

AuthServerModule

I did it but the issue is still existing.

Hello vu.dh@veek.vn,

Please add this block of code to **HttpApiHostModule.cs in public override void OnApplicationInitialization(ApplicationInitializationContext context)

app.Use((ctx, next) => 
    { 
        ctx.Request.Scheme = "https"; 
        return next(); 
    }); 

let me know if this helps you.

Thanks, Anjali

Hi Anjali, I did it but the problem is still existing.

显示 3 个条目中的 1 到 3 个.
Made with ❤️ on ABP v8.2.0-preview Updated on 三月 25, 2024, 15:11