mirror of
https://github.com/YunoHost-Apps/pihole_ynh.git
synced 2024-09-03 20:05:58 +02:00
Merge pull request #79 from grenagit/testing
[pihole FTL conf] Apply official template
This commit is contained in:
commit
aa8d1f12f0
1 changed files with 18 additions and 15 deletions
|
@ -1,34 +1,37 @@
|
||||||
; Listen only for local socket connections or permit all connections
|
#; Pi-hole FTL config file
|
||||||
; localonly|all
|
#; Comments should start with #; to avoid issues with PHP and bash reading this file
|
||||||
|
|
||||||
|
#; Listen only for local socket connections or permit all connections
|
||||||
|
#; localonly|all
|
||||||
SOCKET_LISTENING=localonly
|
SOCKET_LISTENING=localonly
|
||||||
|
|
||||||
; On which port should FTL be listening?
|
#; On which port should FTL be listening?
|
||||||
FTLPORT=__PORT__
|
FTLPORT=__PORT__
|
||||||
|
|
||||||
; Display all queries? Set to no to hide query display
|
#; Display all queries? Set to no to hide query display
|
||||||
; yes|no
|
#; yes|no
|
||||||
QUERY_DISPLAY=yes
|
QUERY_DISPLAY=yes
|
||||||
|
|
||||||
; Allow FTL to analyze AAAA queries from pihole.log?
|
#; Allow FTL to analyze AAAA queries from pihole.log?
|
||||||
; yes|no
|
#; yes|no
|
||||||
AAAA_QUERY_ANALYSIS=yes
|
AAAA_QUERY_ANALYSIS=yes
|
||||||
|
|
||||||
; How long should queries be stored in the database? Setting this to 0 disables the database altogether
|
#; How long should queries be stored in the database? Setting this to 0 disables the database altogether
|
||||||
MAXDBDAYS=365
|
MAXDBDAYS=365
|
||||||
|
|
||||||
; Should FTL try to resolve IPv6 addresses to host names?
|
#; Should FTL try to resolve IPv6 addresses to host names?
|
||||||
; yes|no
|
#; yes|no
|
||||||
RESOLVE_IPV6=yes
|
RESOLVE_IPV6=yes
|
||||||
|
|
||||||
; Should FTL try to resolve IPv4 addresses to host names?
|
#; Should FTL try to resolve IPv4 addresses to host names?
|
||||||
; yes|no
|
#; yes|no
|
||||||
RESOLVE_IPV4=yes
|
RESOLVE_IPV4=yes
|
||||||
|
|
||||||
; How often do we store queries in FTL's database [minutes]?
|
#; How often do we store queries in FTL's database [minutes]?
|
||||||
DBINTERVAL=1.0
|
DBINTERVAL=1.0
|
||||||
|
|
||||||
; Specify path and filename of FTL's SQLite long-term database. Setting this to DBFILE= disables the database altogether
|
#; Specify path and filename of FTL's SQLite long-term database. Setting this to DBFILE= disables the database altogether
|
||||||
DBFILE=/etc/pihole/pihole-FTL.db
|
DBFILE=/etc/pihole/pihole-FTL.db
|
||||||
|
|
||||||
; Up to how many hours of queries should be imported from the database and logs? Maximum is 744 (31 days)
|
#; Up to how many hours of queries should be imported from the database and logs? Maximum is 744 (31 days)
|
||||||
MAXLOGAGE=24.0
|
MAXLOGAGE=24.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue