mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
According to the PHP documentation, PHP 7.0.0+ does not longer recognize hash marks (#) as comments. As FTL has been trained to understand PHP-style (comment lines start with ";") as well, we switch to using them.
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
parent
a89615365e
commit
c338eab3c6
1 changed files with 70 additions and 70 deletions
|
@ -1,84 +1,84 @@
|
||||||
### This file contains parameters for FTL behavior.
|
;;; This file contains parameters for FTL behavior.
|
||||||
### At install, all parameters are commented out. The user can select desired options.
|
;;; At install, all parameters are commented out. The user can select desired options.
|
||||||
### Options shown are the default configuration. No modification is needed for most
|
;;; Options shown are the default configuration. No modification is needed for most
|
||||||
### installations.
|
;;; installations.
|
||||||
### Visit https://docs.pi-hole.net/ftldns/configfile/ for more detailed parameter explanations
|
;;; Visit https://docs.pi-hole.net/ftldns/configfile/ for more detailed parameter explanations
|
||||||
|
|
||||||
## Socket Listening
|
;; Socket Listening
|
||||||
## Listen only for local socket connections or permit all connections
|
;; Listen only for local socket connections or permit all connections
|
||||||
## Options: localonly, all
|
;; Options: localonly, all
|
||||||
#SOCKET_LISTENING=localonly
|
;SOCKET_LISTENING=localonly
|
||||||
|
|
||||||
## Query Display
|
;; Query Display
|
||||||
## Display all queries? Set to no to hide query display
|
;; Display all queries? Set to no to hide query display
|
||||||
## Options: yes, no
|
;; Options: yes, no
|
||||||
#QUERY_DISPLAY=yes
|
;QUERY_DISPLAY=yes
|
||||||
|
|
||||||
## AAA Query Analysis
|
;; AAA Query Analysis
|
||||||
## Allow FTL to analyze AAAA queries from pihole.log?
|
;; Allow FTL to analyze AAAA queries from pihole.log?
|
||||||
## Options: yes, no
|
;; Options: yes, no
|
||||||
#AAAA_QUERY_ANALYSIS=yes
|
;AAAA_QUERY_ANALYSIS=yes
|
||||||
|
|
||||||
## Resolve IPv6
|
;; Resolve IPv6
|
||||||
## Should FTL try to resolve IPv6 addresses to host names?
|
;; Should FTL try to resolve IPv6 addresses to host names?
|
||||||
## Options: yes, no
|
;; Options: yes, no
|
||||||
#RESOLVE_IPV6=yes
|
;RESOLVE_IPV6=yes
|
||||||
|
|
||||||
## Resolve IPv4
|
;; Resolve IPv4
|
||||||
## Should FTL try to resolve IPv4 addresses to host names?
|
;; Should FTL try to resolve IPv4 addresses to host names?
|
||||||
## Options: yes, no
|
;; Options: yes, no
|
||||||
#RESOLVE_IPV4=yes
|
;RESOLVE_IPV4=yes
|
||||||
|
|
||||||
## Max Database Days
|
;; Max Database Days
|
||||||
## How long should queries be stored in the database (days)?
|
;; How long should queries be stored in the database (days)?
|
||||||
## Setting this to 0 disables the database
|
;; Setting this to 0 disables the database
|
||||||
## See: https://docs.pi-hole.net/ftldns/database/
|
;; See: https://docs.pi-hole.net/ftldns/database/
|
||||||
## Options: number of days
|
;; Options: number of days
|
||||||
#MAXDBDAYS=365
|
;MAXDBDAYS=365
|
||||||
|
|
||||||
## Database Interval
|
;; Database Interval
|
||||||
## How often do we store queries in FTL's database (minutes)?
|
;; How often do we store queries in FTL's database (minutes)?
|
||||||
## See: https://docs.pi-hole.net/ftldns/database/
|
;; See: https://docs.pi-hole.net/ftldns/database/
|
||||||
## Options: number of minutes
|
;; Options: number of minutes
|
||||||
#DBINTERVAL=1.0
|
;DBINTERVAL=1.0
|
||||||
|
|
||||||
## Database File
|
;; Database File
|
||||||
## Specify path and filename of FTL's SQLite3 long-term database.
|
;; Specify path and filename of FTL's SQLite3 long-term database.
|
||||||
## Setting this to DBFILE= disables the database altogether
|
;; Setting this to DBFILE= disables the database altogether
|
||||||
## See: https://docs.pi-hole.net/ftldns/database/
|
;; See: https://docs.pi-hole.net/ftldns/database/
|
||||||
## Option: path to db file
|
;; Option: path to db file
|
||||||
#DBFILE=/etc/pihole/pihole-FTL.db
|
;DBFILE=/etc/pihole/pihole-FTL.db
|
||||||
|
|
||||||
## Max Log Age
|
;; Max Log Age
|
||||||
## Up to how many hours of queries should be imported from the database and logs (hours)?
|
;; Up to how many hours of queries should be imported from the database and logs (hours)?
|
||||||
## Maximum is 744 (31 days)
|
;; Maximum is 744 (31 days)
|
||||||
## Options: number of days
|
;; Options: number of days
|
||||||
#MAXLOGAGE=24.0
|
;MAXLOGAGE=24.0
|
||||||
|
|
||||||
## FTL Port
|
;; FTL Port
|
||||||
## On which port should FTL be listening?
|
;; On which port should FTL be listening?
|
||||||
## Options: tcp port
|
;; Options: tcp port
|
||||||
#FTLPORT=4711
|
;FTLPORT=4711
|
||||||
|
|
||||||
## Privacy Level
|
;; Privacy Level
|
||||||
## Which privacy level is used?
|
;; Which privacy level is used?
|
||||||
## See: https://docs.pi-hole.net/ftldns/privacylevels/
|
;; See: https://docs.pi-hole.net/ftldns/privacylevels/
|
||||||
## Options: 0, 1, 2, 3
|
;; Options: 0, 1, 2, 3
|
||||||
#PRIVACYLEVEL=0
|
;PRIVACYLEVEL=0
|
||||||
|
|
||||||
## Ignore Localhost
|
;; Ignore Localhost
|
||||||
## Should FTL ignore queries coming from the local machine?
|
;; Should FTL ignore queries coming from the local machine?
|
||||||
## Options: yes, no
|
;; Options: yes, no
|
||||||
#IGNORE_LOCALHOST=no
|
;IGNORE_LOCALHOST=no
|
||||||
|
|
||||||
## Blocking Mode
|
;; Blocking Mode
|
||||||
## How should FTL reply to blocked queries?
|
;; How should FTL reply to blocked queries?
|
||||||
## See: https://docs.pi-hole.net/ftldns/blockingmode/
|
;; See: https://docs.pi-hole.net/ftldns/blockingmode/
|
||||||
## Options: NULL, IP-AAAA-NODATA, IP, NXDOMAIN
|
;; Options: NULL, IP-AAAA-NODATA, IP, NXDOMAIN
|
||||||
#BLOCKINGMODE=NULL
|
;BLOCKINGMODE=NULL
|
||||||
|
|
||||||
## Regex Debug Mode
|
;; Regex Debug Mode
|
||||||
## Controls if FTLDNS should print extended details about regex matching into pihole-FTL.log.
|
;; Controls if FTLDNS should print extended details about regex matching into pihole-FTL.log.
|
||||||
## See: https://docs.pi-hole.net/ftldns/regex/overview/
|
;; See: https://docs.pi-hole.net/ftldns/regex/overview/
|
||||||
## Options: true, false
|
;; Options: true, false
|
||||||
#REGEX_DEBUGMODE=false
|
;REGEX_DEBUGMODE=false
|
||||||
|
|
Loading…
Reference in a new issue