coredns-deployment/systemd/coredns.service
leonardo091800 d222a8e478
In systemd: added log files and changed workingdir (#287)
* coredns log configuration for logrotate

In order to not let the log files (wrote in the systemd file) grew too much, we should move this "coredns-log.conf" file inside /etc/logrotate.d/
In this case I set 50MB of logs, splitted in 5 files, rotation occurs every time on file reaches 10MB in size, I also said to compress the file after the rotation, so even less space should be occupied,
you can change this settings with whatever configuration you prefer. :)

* Update README.md

updated readme with instruction with where to move the configuration file for coredns-log.conf

* Update README.md

* changed workingdir and added log files

sometimes using ~ in the workingdir does not work
Also I'd like to print a basic log of what's happening

* update logs in coredns.service

Changed StandardOutput and StandardError from file: to append:
(so when coredns restart logs continue to be printed)
2023-08-11 14:14:06 -04:00

23 lines
557 B
Desktop File

[Unit]
Description=CoreDNS DNS server
Documentation=https://coredns.io
After=network.target
[Service]
PermissionsStartOnly=true
LimitNOFILE=1048576
LimitNPROC=512
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
AmbientCapabilities=CAP_NET_BIND_SERVICE
NoNewPrivileges=true
User=coredns
WorkingDirectory=/var/lib/coredns
ExecStart=/usr/bin/coredns -conf=/etc/coredns/Corefile
ExecReload=/bin/kill -SIGUSR1 $MAINPID
Restart=on-failure
StandardOutput=append:/var/log/coredns.log
StandardError=append:/var/log/coredns.err.log
[Install]
WantedBy=multi-user.target