Robert Witkowski
Robert Witkowski
I started work on new docker-compose settings for non-linux users. Branch: https://github.com/asc-lab/dotnetcore-microservices-poc/tree/without-network-mode-host Next steps: - use env variables in RawRabbitInstaller, appsettings.json, ocelot.json - use prepared env variables in docker-compose (all.yml)
Minimal version (API Gateway secured) has been created with issue https://github.com/asc-lab/micronaut-microservices-poc/issues/3 In this issue we should secure all microservices.
Add info about security. How can I use `intercept-url-map` to create unsecured OpenAPI docs: https://micronaut-projects.github.io/micronaut-security/snapshot/guide/#interceptUrlMap Example: ``` security: enabled: true intercept-url-map: - pattern: /swagger/** access: - isAnonymous() - pattern: /swagger-ui/**...
I want to integrate my Micronaut app with Kerberos Server (using Kerberos authentication protocol). Users should be authenticated against app by opening the URL. User should not enter a username/password...