AI OnAI Off
I don't think that it is possible. Why not put the license in a shared location?
For shared location in appsettings
{
"EPiServer": {
"CMS": {
"LicensePath": {
"Path": "\\\\uncpath\\Share\\License.config"
},
...
Or in startup
services.Configure<LicensePathOptions>(options =>
{
options.Path = "PATH";
});
Thanks Eric for confirming that. Ended up storing the licenses in our own table, pulling from sql on startup and writing License.config to the proper directory in each container.
Can someone please point me at some documentation or provide a code example for having our CMS site validate its license via sql server instead the License.config file?
I see some documentation for ILicenseRepository, however I do not see how to get Optimizely to call into my custom repository for validation.