Using the latest version of anuglar/c# in seperate projects.
Would like to know if it is possible to do the following:
for backend https://{TENANCY_NAME}.api.mydomain.com for frontend https://{TENANCY_NAME}.mydomain.com
And if the above would be possible? Would the backend host https://api.mydomain.com not route to the frontend?
Thank you
When updating the src/styles.css the changes only take effect when I add !important, otherwise they get overridden. Is there a way to do this without using the important statement with each customization?
e.g. in src/styles.css
Does not work
.form-control{ border-radius: 0px; }
Works but would like alternative
.form-control{ border-radius: 0px !important; }
Hi,
I have deployed my back-end to Azure and want to use multitenancy. However, it seems then even when using the Tenancy subdomain the Host is being used, and only the Host login works.
I setup the appsetting.production.json
"App": { "ServerRootAddress": "http://{TENANCY_NAME}.myapi.nl", "ClientRootAddress": "https://{TENANCY_NAME}.myapp.nl", "CorsOrigins": "https://{TENANCY_NAME}.myapp.nl" }
And the appconfig.production.json
"remoteServiceBaseUrl": "http://{TENANCY_NAME}.myapi.nl", "appBaseUrl": "https://{TENANCY_NAME}.myapp.nl",
When using; http://myapi.nl/AbpUserConfiguration/GetAll?d=xxxxxxxxxxxxxx
i get the same result as when i use; http://mytenant.myapi.nl/AbpUserConfiguration/GetAll?d=xxxxxxxxxxxxxx
Dont know if that should be the case.
My Azure settings are as follows;
Please assist.
Regards.