Skip to main content

Configuration

You can modify BaGetter's configurations by editing the appsettings.json file.

Require an API key

You can require that users provide a password, called an API key, to publish packages. To do so, you can insert the desired API key in the ApiKey field.

{
"ApiKey": "NUGET-SERVER-API-KEY",
...
}

Users will now have to provide the API key to push packages:

dotnet nuget push -s http://localhost:5000/v3/index.json -k NUGET-SERVER-API-KEY package.1.0.0.nupkg

Enable read-through caching

Read-through caching lets you index packages from an upstream source. You can use read-through caching to:

  1. Speed up your builds if restores from nuget.org are slow
  2. Enable package restores in offline scenarios

The following Mirror setting configures BaGetter to index packages from nuget.org:

{
...

"Mirror": {
"Enabled": true,
"PackageSource": "https://api.nuget.org/v3/index.json"
},

...
}
info

PackageSource is the value of the NuGet service index.

Enable package hard deletions

To prevent the "left pad" problem, BaGetter's default configuration doesn't allow package deletions. Whenever BaGetter receives a package deletion request, it will instead "unlist" the package. An unlisted package is undiscoverable but can still be downloaded if you know the package's id and version. You can override this behavior by setting the PackageDeletionBehavior:

{
...

"PackageDeletionBehavior": "HardDelete",

...
}

Enable package overwrites

Normally, BaGetter will reject a package upload if the id and version are already taken. This is to maintain the immutability of semantically versioned packages.

warning

NuGet clients cache packages on multiple levels, so overwriting a package can lead to unexpected behavior. A client may have a cached version of the package that is different from the one on the server. Make sure that everyone involved is aware of the implications of overwriting packages.

You can configure BaGetter to overwrite the already existing package by setting AllowPackageOverwrites:

{
...

"AllowPackageOverwrites": "true",

...
}

To allow pre-release versions to be overwritten but not stable releases, set AllowPackageOverwrites to PrereleaseOnly.

Pushing a package with a pre-release version like "3.1.0-SNAPSHOT" will overwrite the existing "3.1.0-SNAPSHOT" package, but pushing a "3.1.0" package will fail if a "3.1.0" package already exists.

Private feeds

A private feed requires users to authenticate before accessing packages.

warning

Private feeds are not supported at this time! See this pull request for more information.

Database configuration

BaGetter supports multiple database engines for storing package information:

  • MySQL: MySql
  • SQLite: Sqlite
  • SQL Server: SqlServer
  • PostgreSQL: PostgreSql
  • Azure Table Storage: AzureTable

Each database engine requires a connection string to configure the connection. Please refer to ConnectionStrings.com to learn how to create the proper connection string for each database engine.

You may configure the chosen database engine either using environment variables or by editing the appsettings.json file.

Environment Variables

There are two environment variables related to database configuration. These are:

  • Database__Type: The database engine to use, this should be one of the strings from the above list such as PostgreSql or Sqlite.
  • Database__ConnectionString: The connection string for your database engine.

appsettings.json

The database settings are located under the Database key in the appsettings.json configuration file:

{
...

"Database": {
"Type": "Sqlite",
"ConnectionString": "Data Source=bagetter.db"
},

...
}

There are two settings related to the database configuration:

  • Type: The database engine to use, this should be one of the strings from the above list such as PostgreSql or Sqlite.
  • ConnectionString: The connection string for your database engine.

IIS server options

IIS Server options can be configured under the IISServerOptions key. The available options are detailed at docs.microsoft.com

note

If not specified, the MaxRequestBodySize in BaGetter defaults to 250MB (262144000 bytes), rather than the ASP.NET Core default of 30MB.

{
...

"IISServerOptions": {
"MaxRequestBodySize": 262144000
},

...
}

Health Endpoint

A health endpoint is exposed at /health that returns 200 OK or 503 Service Unavailable and always includes a json object listing the current status of the application:

{
"Status": "Healthy",
"Sqlite": "Healthy",
...
}

The services can be omitted by setting the Statistics:ListConfiguredServices to false, in which case only the Status property is returned in the json object.

This path and the name of the "Status" property are configurable if needed:

{
...

"HealthCheck": {
"Path": "/healthz",
"StatusPropertyName": "Status"
},

...
}

Maximum package size

The max package size default to 8GiB and can be configured using the MaxPackageSizeGiB setting. The NuGet gallery currently has a 250MB limit, which is enough for most packages. This can be useful if you are hosting a private feed and need to host large packages that include chocolatey installers, machine learning models, etc.

{
...

"MaxPackageSizeGiB": 8,

...
}

Statistics

On the application's statistics page the currently used services and overall package and version counts are listed. You can hide or show this page by modifying the EnableStatisticsPage configuration.
If you set ListConfiguredServices to false the currently used services for database and storage (such as Sqlite) are omitted on the stats page:

{
...

"Statistics": {
"EnableStatisticsPage": true,
"ListConfiguredServices": false
},

...
}

Load secrets from files

Mostly useful when running containerised (e.g. using Docker, Podman, Kubernetes, etc), the application will look for files named in the same pattern as environment variables under /run/secrets.

/run/secrets/Database__ConnectionString

This allows for sensitive values to be provided individually to the application, typically by bind-mounting files.

Docker Compose example

version: '2'

services:
bagetter:
image: bagetter/bagetter:latest
volumes:
# Single file mounted for API key
- ./secrets/api-key.txt:/run/secrets/ApiKey:ro
- ./data:/srv/baget
environment:
- Database__ConnectionString=Data Source=/srv/baget/bagetter.db
- Database__Type=Sqlite
- Mirror__Enabled=false
- Storage__Type=FileSystem
- Storage__Path=/srv/baget/packages

Aditional documentation for secrets: