Take the community feedback survey now.
Looking at an upgrade for an on-prem load balanced site and want to use this package:
<PackageReference Include="EPiServer.Events.MassTransit" Version="1.0.0" />
I don't see much on the web around configuring it... I would think it's something like having the below block in Startup. How have you configured it?
services.AddMassTransit(x => { x.UsingRabbitMq((context, cfg) => { cfg.Host("10.187.222.80", "/", h => { h.Username("some-username"); h.Password(this.configuration.GetValue<string>("RabbitMq:Password")); }); cfg.ConfigureEndpoints(context); }); });
Looking at an upgrade for an on-prem load balanced site and want to use this package:
I don't see much on the web around configuring it... I would think it's something like having the below block in Startup. How have you configured it?