Version

There are multiple versions of this document. Pick the options that suit you best.

UI
Database
Tiered

Step 2: Customizing the Configuration of the ABP Application

  • To customize the configuration of your ABP application, modify the ConnectionString values in every location throughout your project. The ConnectionString values are stored in the appsettings.json files.

    This includes the following files:

    ./src/yourapp.DbMigrator/appsettings.json and ./src/yourapp.HttpApi.Host/appsettings.json

"ConnectionStrings": {
    "Default": "Server=tcp:yourserver.database.windows.net,1433;Initial Catalog=yourdatabase;Persist Security Info=False;User ID=yourusername;Password=yourpassword;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;"
}
  • Modify the yourapp.Blazor URL in every location throughout your project.

    This includes the following files:

    ./src/yourapp.Blazor/appsettings.json , ./src/yourapp.DbMigrator/appsettings.json and ./src/yourapp.HttpApi.Host/appsettings.json

    "App": {
        "SelfUrl": "https://yourapp.azurewebsites.net"
    }
  • Modify the yourapp.HttpApi.Host URL in every location throughout your project.

    This includes the following files:

    ./src/yourapp.Blazor/appsettings.json , ./src/yourapp.DbMigrator/appsettings.json and ./src/yourapp.HttpApi.Host/appsettings.json

    "App": {
        "SelfUrl": "https://yourApiHost.azurewebsites.net"
    }

What's next?

Was this page helpful?
Please make a selection.
Thank you for your valuable feedback!

Please note that although we cannot respond to feedback, our team will use your comments to improve the experience.

In this document
Mastering ABP Framework Book
Mastering ABP Framework

This book will help you gain a complete understanding of the framework and modern web application development techniques.