Tom Delaney
Tom Delaney
I'll take a stab at this.
Since Identity Server 4 operates as an OpenID Connect and OAuth 2.0 framework, is the intention that the SSO configuration of the Steeltoe app remains similar but Identity Server would...
Ok, that makes sense. I can start on identity server for SSO later this evening.
The solution I'm starting to go down is as follows: ### Mutual TLS auth *CloudFoundry config* ``` public void ConfigureServices(IServiceCollection services) { services.AddCloudFoundryCertificateAuth(Configuration); services.AddControllers(); } ``` becomes ``` public void...
The solution I'm starting to go down is as follows: ### SSO *CloudFoundry config* ``` services.AddAuthentication((options) => { options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme; options.DefaultChallengeScheme = CloudFoundryDefaults.AuthenticationScheme; }) .AddCookie((options) => { options.AccessDeniedPath =...
@TimHess I'm not far down an implementation, am more than happy to pivot. Most of my progress has been on trying to identify options for the end user to swap...
@donfour Good find! I want to just add that if/when this is documented, I think it would go a long way to cover how to debug this handler logic while...
My first pass idea was to provide an actuator that with the following config settings (prefixed with `Management:Endpoints:Logfile`. | Key | Description | Default | |-------|------------------|-------------| | Enabled | Whether...
@bart-vmware thanks for the notes. I was originally planning on making `FilePath` relative to the application's working directory. I'd prefer not have the files inside the `IWebHostEnvironment.WebRootPath` as those files...
An additional note: When configuring Spring's logging to just a directory, Spring uses a default log file name of `spring.log`. [https://docs.spring.io/spring-boot/reference/features/logging.html#features.logging.file-output](https://docs.spring.io/spring-boot/reference/features/logging.html#features.logging.file-output). The logfile actuator in Spring seems to get a...