Hi,
If every service need a public URL, I think it is a terrible design
It's up to you. you can use the internal URL for the service.
If I need web can redirect to auth.mydomain.com, and authserver can redirect to console.mydomain.com, which fields need modify?
I think it's clear, you can see everything you need here:
https://github.com/abpframework/eShopOnAbp/blob/main/etc/k8s/azure/values-az-cr.yaml
Hi,
I think this is a new problem, could you open a new ticket? thanks.
Hi,
As I know, we have no plan to do it yet.
You may need to implement it yourself
Also I wonder what is happening in this setup, Is the bottleneck happening from the redis cache or from the database connection? At first thought, I assume it is sth going on with Redis Cache,
This looks like a bottleneck for redis.
Since my text templates doesn't use any localization is it possible to use VirtualFileTemplateContentContributor instead? Of course I can add another ITemplateContentContributor. I just wonder if there is any other way to avoid trying the last contributor and only use VirtualFileTemplateContentContributor, since I don't want the code to go to redis cache or database at all. All I need is to get the template from virtual file system and replace it with the model.
You can remove DatabaseTemplateContentContributor
from the AbpTextTemplatingOptions
.
For example:
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpTextTemplatingOptions>(options =>
{
options.ContentContributors.RemoveAll(x => x == typeof(DatabaseTemplateContentContributor));
});
}
Hi,
This has nothing to do with ABP.
You should use a DNS provider to resolve your domain name.
I added the source code at AuthServer/Pages folder, but while building the project
You can't simply add the source code to the folder.
You need to follow the custom module document:https://docs.abp.io/en/abp/7.3/UI/AspNetCore/Customization-User-Interface
Hi,
I don't understand, can you explain in detail?
Hi,
Can you share the project with me? I will check it. my email is shiwei.liang@volosoft.com