Skip to content

Commit

Permalink
Standardize Path Formatting (#23)
Browse files Browse the repository at this point in the history
* Standardize Path Formatting

Changed paths to use consistent formatting . Updated all paths to use double quotes consistently, ensuring uniformity and readability. This change enhances code clarity and maintains a consistent coding style across the project.

* Revert unrelated change in chan-buffer-size

---------

Co-authored-by: Christos Arvanitis <[email protected]>
  • Loading branch information
4quarks and arvchristos authored Mar 6, 2024
1 parent 2f3d868 commit 7ea7418
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions files/configuration/dnscollector/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ multiplexer:
loggers:
- name: filelogdomains
logfile:
file-path: /var/dnscollector/matches/matches_domains.json
file-path: "/var/dnscollector/matches/matches_domains.json"
mode: json
transforms:
filtering:
keep-fqdn-file: '/var/dnscollector/misp_domains.txt'
keep-fqdn-file: "/var/dnscollector/misp_domains.txt"

- name: filelogips
logfile:
file-path: /var/dnscollector/matches/matches_ips.json
file-path: "/var/dnscollector/matches/matches_ips.json"
mode: json
transforms:
filtering:
keep-rdata-file: '/var/dnscollector/misp_ips.txt'
keep-rdata-file: "/var/dnscollector/misp_ips.txt"

- name: fileall
logfile:
file-path: /var/dnscollector/queries.log
file-path: "/var/dnscollector/queries.log"
mode: json
max-size: 100
max-files: 100
Expand Down

0 comments on commit 7ea7418

Please sign in to comment.