This folder contains some examples of configuration for running the SCANOSS GO API.
There are two types of configuration:
- Application Config
- IP Filtering
There are two configs provided here:
- Dev - app-config-dev.json
- Prod - app-config-prod.json
A description of each field and its intended usage can be found in server_config.go.
There are two types of IP filtering supports:
- Allow List - allow_list.txt
- Deny List - deny_list.txt
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
.
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"
}
}