Skip to content

Latest commit

 

History

History

config

Sample SCANOSS Scanning GO API Configs

This folder contains some examples of configuration for running the SCANOSS GO API.

There are two types of configuration:

  • Application Config
  • IP Filtering

App Config

There are two configs provided here:

A description of each field and its intended usage can be found in server_config.go.

IP Filtering

There are two types of IP filtering supports:

The implementation for this is based on jpillora/ipfilter.

Configuration for this is controlled via the Filtering block in the config file.

Currently, specific IP addresses and subnet masks are supported. Blocking by default can be controlled via Filtering -> BlockByDefault and Proxy support using Filtering -> TrustProxy.

Detailed ZAP Logging Config

There is an optional ZAP configuration file in this folder also:

Details for configuring this file can be found here and the exact structure can be found in config.go.

To add this config to the startup please add the ConfigFile option to the Logging section of the configuration:

{
  "Logging": {
    "ConfigFile": "config/zap-logging-prod.json"
  }
}