Simple identity server implementation
 
 
Go to file
Tudor Stanciu c032338bcd set new domain in configs 2022-12-29 15:44:26 +02:00
IdentityServer.Api Remove secrets from source code 2022-11-25 09:06:58 +02:00
IdentityServer.Application Store and compare passwords as hash to improve system security 2022-02-11 10:56:52 +02:00
IdentityServer.Domain Upgrade to .net5 2022-02-10 16:12:46 +02:00
IdentityServer.Domain.Data Remove secrets from source code 2022-11-25 09:06:58 +02:00
IdentityServer.PublishedLanguage Nuget packages update 2021-11-12 01:44:26 +02:00
IdentityServer.Wrapper Nuget packages update 2021-11-12 01:44:26 +02:00
.dockerignore Added docker support 2020-12-25 01:17:36 +02:00
.gitattributes Add .gitignore and .gitattributes. 2020-12-19 18:17:22 +02:00
.gitignore Add .gitignore and .gitattributes. 2020-12-19 18:17:22 +02:00
Directory.Build.props Upgrade the migration service to version 1.1.0 2022-02-18 23:07:05 +02:00
Documentation.md fixes 2021-11-12 02:22:51 +02:00
IdentityServer.sln added readme file 2022-11-27 02:57:21 +02:00
Notes.txt remove secrets from source code 2022-11-25 09:15:36 +02:00
NuGet.config set new domain in configs 2022-12-29 15:44:26 +02:00
README.md added readme file 2022-11-27 02:57:21 +02:00
ReleaseNotes.xml set new domain in configs 2022-12-29 15:44:26 +02:00
build-amd64.sh Remove secrets from source code 2022-11-25 09:06:58 +02:00
dependencies.props migration fix 2022-02-19 00:09:23 +02:00
release.sh Upgrade the migration service to version 1.1.0 2022-02-18 23:07:05 +02:00

README.md

Identity Server

This project represents a simple identity server implementation focused strictly on the needs of my home lab. At the moment it has a simple API consisting of only two methods:

  • /identity/authenticate - takes care of authenticating a user based on credentials and generates an access token.
  • /identity/authorize - deals with the authorization of a token (verifies its existence, validity, authenticity, etc)

Stack

  • .NET (C#)
  • EntityFramework
  • SQL Server
  • Swagger
  • Docker
  • Shell