Giter Club home page Giter Club logo

Comments (2)

mrellipse avatar mrellipse commented on September 22, 2024

as you are hosting it on ubuntu, you will need to explicitly configure DataProtection similar to below

public static partial class Extensions { public static void ConfigureDataProtection(this IServiceCollection services, Toucan.Server.Config config) { services.AddDataProtection() .PersistKeysToFileSystem(new DirectoryInfo("/var/lib/toucan/web/keys")) .SetApplicationName(config.ApplicationName); } }
otherwise the keys used to encrypt and decrypt token details will change each time the app is restarted. this is just a part of AspNetCore setup in general that developers need to learn about.

i haven't run into the other issue you mentioned regarding database connection being closed. but I believe it might be a bug.

can you try changing the StructureMap registration for DbContextBase in the Server project to be ContainerScoped() and let me know if behaviour alters?

the default service.AddDbContext() should be creating the correct registration as per

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection

but the subsequent registration might be clashing with that as it builds up an IServiceProvider instance

from toucan.

hmuhdkamran avatar hmuhdkamran commented on September 22, 2024

It has been resolved,
the issue was that the folder have not sufficient rights, now it is working fine.

from toucan.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.