Activities of "franciscokadzi@gmail.com"

Hi I have been able to work around the chrome and firefox issues locally. Everything works as expected locally But the azure issue remains the same. I get this error on azure NET::ERR_CERT_COMMON_NAME_INVALID and 404 error.

I have tried the suggestion in the following tickets but it seems not to help.

https://support.abp.io/QA/Questions/1876 https://support.abp.io/QA/Questions/6105/Subdomain-Tenant-Resolver-not-working-on-non-development-environment https://support.abp.io/QA/Questions/1552/Better-Documentation-for-Multi-Tenant-Subdomain-Resolver https://support.abp.io/QA/Questions/6606/Unable-to-configure-sub-domain-in-the-Application

If necessary I can provide access to the repo so you check. we could also get on a zoom call or anything you can do to help

Hi, I already have that in my appsettings. This is what I have

{
  "App": {
    "SelfUrl": "https://localhost:44348",
    "AngularUrl": "http://localhost:4200",
    "CorsOrigins": "http://*.localhost:4200,http://localhost:4200",
    "RedirectAllowedUrls": "http://localhost:4200,http://*.localhost:4200",
    "DisablePII": "false",
    "HealthCheckUrl": "/health-status"
  },
  "ConnectionStrings": {
    "Default": "Server=NAELI\\SQLEXPRESS;Database=MyApp;Trusted_Connection=True;TrustServerCertificate=True;"
  },
  "AuthServer": {
    "Authority": "https://localhost:44348",
    "RequireHttpsMetadata": "true",
    "SwaggerClientId": "MyApp_Swagger"
  },
  "StringEncryption": {
    "DefaultPassPhrase": "yMdNzBpz3TdwXUc8"
  }
}

and my environment.ts file

import { Environment } from '@abp/ng.core';

const baseUrl = 'http://{0}.localhost:4200';

const oAuthConfig = {
  issuer: 'https://{0}.localhost:44348/',
  redirectUri: baseUrl,
  clientId: 'MyApp_App',
  responseType: 'code',
  scope: 'offline_access MyApp',
  requireHttps: true,
};

export const environment = {
  production: false,
  application: {
    baseUrl,
    name: 'MyApp',
    logoUrl: '../assets/images/logo/logo-light.svg',
  },
  oAuthConfig,
  apis: {
    default: {
      url: 'https://{0}.localhost:44348',
      rootNamespace: 'MyApp',
    },
    AbpAccountPublic: {
      url: oAuthConfig.issuer,
      rootNamespace: 'AbpAccountPublic',
    },
  },
} as Environment;

Showing 11 to 12 of 12 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13