blob: 7c9f22bebcf21b5bbd096ae8591c471d0caa19e6 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// SPDX-License-Identifier: CC0-1.0
// Default Hydrilla config file.
//
// Copyright (C) 2021, 2022 Wojtek Kosior
//
// Available under the terms of Creative Commons Zero v1.0 Universal.
{
// Relative path to directory from which Hydrilla will load packages
// metadata and serve files.
// Deliberately avoiding word "content", see:
// http://www.gnu.org/philosophy/words-to-avoid.en.html#Content
"malcontent_dir": "/var/lib/hydrilla/malcontent",
// Hydrilla will display this link to users as a place where they can
// obtain sources for its software. This config option is meant to ease
// compliance with the AGPL.
"hydrilla_project_url": "https://hydrillabugs.koszko.org/projects/hydrilla/wiki",
// Tell Hydrilla to look for additional configuration in those files, in
// this order.
"try_configs": ["/etc/hydrilla/config.json"]
}
|