├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── docker-compose.yml ├── generate_self_signed_cert.ps1 └── src ├── Api ├── Api.csproj ├── Controllers │ └── IdentityController.cs ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── docker-entrypoint.sh ├── Client ├── Client.csproj └── Program.cs └── IdentityServer ├── Config.cs ├── Dockerfile ├── IdentityServer.csproj ├── Program.cs ├── Properties └── launchSettings.json └── Startup.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /generate_self_signed_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/generate_self_signed_cert.ps1 -------------------------------------------------------------------------------- /src/Api/Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/Api.csproj -------------------------------------------------------------------------------- /src/Api/Controllers/IdentityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/Controllers/IdentityController.cs -------------------------------------------------------------------------------- /src/Api/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/core/sdk:3.1 2 | 3 | WORKDIR /root/Api 4 | 5 | EXPOSE 6001 6 | 7 | ENTRYPOINT ["./docker-entrypoint.sh"] -------------------------------------------------------------------------------- /src/Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/Program.cs -------------------------------------------------------------------------------- /src/Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/Startup.cs -------------------------------------------------------------------------------- /src/Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/appsettings.Development.json -------------------------------------------------------------------------------- /src/Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/appsettings.json -------------------------------------------------------------------------------- /src/Api/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Api/docker-entrypoint.sh -------------------------------------------------------------------------------- /src/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Client/Client.csproj -------------------------------------------------------------------------------- /src/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/Client/Program.cs -------------------------------------------------------------------------------- /src/IdentityServer/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/Config.cs -------------------------------------------------------------------------------- /src/IdentityServer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/Dockerfile -------------------------------------------------------------------------------- /src/IdentityServer/IdentityServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/IdentityServer.csproj -------------------------------------------------------------------------------- /src/IdentityServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/Program.cs -------------------------------------------------------------------------------- /src/IdentityServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/IdentityServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjarosie/IdentityServerDockerHttpsDemo/HEAD/src/IdentityServer/Startup.cs --------------------------------------------------------------------------------