mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
- Take maintainership - Switch to DISTVERSION - Enable AESNI by default (run time detection if it can be used or not) - Pet portfmt and portclippy - Respect hier(7) for config files and dirs Changes: https://github.com/PurpleI2P/i2pd/releases/tag/2.40.0 PR: 260206 Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D33384
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
--- contrib/i2pd.conf.orig 2021-11-28 01:26:44 UTC
|
|
+++ contrib/i2pd.conf
|
|
@@ -8,19 +8,19 @@
|
|
|
|
## Tunnels config file
|
|
## Default: ~/.i2pd/tunnels.conf or /var/lib/i2pd/tunnels.conf
|
|
-# tunconf = /var/lib/i2pd/tunnels.conf
|
|
+tunconf = %%ETCDIR%%/tunnels.conf
|
|
|
|
## Tunnels config files path
|
|
## Use that path to store separated tunnels in different config files.
|
|
## Default: ~/.i2pd/tunnels.d or /var/lib/i2pd/tunnels.d
|
|
-# tunnelsdir = /var/lib/i2pd/tunnels.d
|
|
+tunnelsdir = %%ETCDIR%%/tunnels.d
|
|
|
|
## Path to certificates used for verifying .su3, families
|
|
-## Default: ~/.i2pd/certificates or /var/lib/i2pd/certificates
|
|
-# certsdir = /var/lib/i2pd/certificates
|
|
+## Default: ~/.i2pd/certificates or %%CERTSDIR%%
|
|
+# certsdir = %%CERTSDIR%%
|
|
|
|
## Where to write pidfile (default: i2pd.pid, not used in Windows)
|
|
-# pidfile = /run/i2pd.pid
|
|
+pidfile = /var/run/i2pd/i2pd.pid
|
|
|
|
## Logging configuration section
|
|
## By default logs go to stdout with level 'info' and higher
|
|
@@ -30,9 +30,9 @@
|
|
## * stdout - print log entries to stdout
|
|
## * file - log entries to a file
|
|
## * syslog - use syslog, see man 3 syslog
|
|
-# log = file
|
|
+log = file
|
|
## Path to logfile (default - autodetect)
|
|
-# logfile = /var/log/i2pd/i2pd.log
|
|
+logfile = /var/log/i2pd/i2pd.log
|
|
## Log messages above this level (debug, info, *warn, error, none)
|
|
## If you set it to none, logging will be disabled
|
|
# loglevel = warn
|