Changeset 12955 in hybrid for branches/releng-10/nanobsd
- Timestamp:
- Oct 12, 2014, 1:31:47 PM (10 years ago)
- Location:
- branches/releng-10/nanobsd/files
- Files:
-
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/releng-10/nanobsd/files/etc/rc.d/unbound
r12948 r12955 17 17 load_rc_config $name 18 18 19 command="/usr/ local/sbin/unbound"20 pidfile=${unbound_pidfile:-"/ usr/local/etc/unbound/unbound.pid"}21 command_args=${unbound_flags:-"-c / usr/local/etc/unbound/unbound.conf"}19 command="/usr/sbin/unbound" 20 pidfile=${unbound_pidfile:-"/var/unbound/unbound.pid"} 21 command_args=${unbound_flags:-"-c /var/unbound/unbound.conf"} 22 22 extra_commands="reload" 23 23 -
branches/releng-10/nanobsd/files/var/unbound/unbound.conf
r12941 r12955 44 44 # when servers change, therefore it is good practice to use a root-hints 45 45 # file. get one from ftp://FTP.INTERNIC.NET/domain/named.cache 46 root-hints: "/ usr/local/etc/unbound/root.hints"46 root-hints: "/var/unbound/root.hints" 47 47 48 48 # enable to not answer id.server and hostname.bind queries. … … 151 151 # queries will fail. 152 152 153 auto-trust-anchor-file: "/ usr/local/etc/unbound/root.key"153 auto-trust-anchor-file: "/var/unbound/root.key" 154 154 155 155 # Should additional section of secure message also be kept clean of unsecure … … 179 179 # suggest commenting out any of the local-zone and local-data lines above if 180 180 # you suspect they could be included in the unbound_ad_servers servers file. 181 #include: "/ usr/local/etc/unbound/unbound_ad_servers"181 #include: "/var/unbound/unbound_ad_servers" 182 182 183 183 # locally served zones can be configured for the machines on the LAN. … … 242 242 243 243 244 include: / usr/local/etc/unbound/forward-zone244 include: /var/unbound/forward-zone 245 245 246 246 # -
branches/releng-10/nanobsd/files/var/unbound/unbound.conf.gateway
r12941 r12955 44 44 # when servers change, therefore it is good practice to use a root-hints 45 45 # file. get one from ftp://FTP.INTERNIC.NET/domain/named.cache 46 root-hints: "/ usr/local/etc/unbound/root.hints"46 root-hints: "/var/unbound/root.hints" 47 47 48 48 # enable to not answer id.server and hostname.bind queries. … … 151 151 # queries will fail. 152 152 153 auto-trust-anchor-file: "/ usr/local/etc/unbound/root.key"153 auto-trust-anchor-file: "/var/unbound/root.key" 154 154 155 155 # Should additional section of secure message also be kept clean of unsecure … … 179 179 # suggest commenting out any of the local-zone and local-data lines above if 180 180 # you suspect they could be included in the unbound_ad_servers servers file. 181 #include: "/ usr/local/etc/unbound/unbound_ad_servers"181 #include: "/var/unbound/unbound_ad_servers" 182 182 183 183 # locally served zones can be configured for the machines on the LAN. … … 242 242 243 243 244 include: / usr/local/etc/unbound/forward-zone244 include: /var/unbound/forward-zone 245 245 246 246 # -
branches/releng-10/nanobsd/files/var/unbound/unbound.conf.node
r12941 r12955 44 44 # when servers change, therefore it is good practice to use a root-hints 45 45 # file. get one from ftp://FTP.INTERNIC.NET/domain/named.cache 46 root-hints: "/ usr/local/etc/unbound/root.hints"46 root-hints: "/var/unbound/root.hints" 47 47 48 48 # enable to not answer id.server and hostname.bind queries. … … 151 151 # queries will fail. 152 152 153 auto-trust-anchor-file: "/ usr/local/etc/unbound/root.key"153 auto-trust-anchor-file: "/var/unbound/root.key" 154 154 155 155 # Should additional section of secure message also be kept clean of unsecure … … 179 179 # suggest commenting out any of the local-zone and local-data lines above if 180 180 # you suspect they could be included in the unbound_ad_servers servers file. 181 #include: "/ usr/local/etc/unbound/unbound_ad_servers"181 #include: "/var/unbound/unbound_ad_servers" 182 182 183 183 # locally served zones can be configured for the machines on the LAN. … … 242 242 243 243 244 include: / usr/local/etc/unbound/forward-zone244 include: /var/unbound/forward-zone 245 245 246 246 # -
branches/releng-10/nanobsd/files/var/unbound/unbound.conf.sample
r12941 r12955 203 203 # 204 204 # If you give "" no chroot is performed. The path must not end in a /. 205 # chroot: "/ usr/local/etc/unbound"205 # chroot: "/var/unbound" 206 206 207 207 # if given, user privileges are dropped (after binding port), … … 213 213 # relative to this directory. If you give "" the working directory 214 214 # is not changed. 215 # directory: "/ usr/local/etc/unbound"215 # directory: "/var/unbound" 216 216 217 217 # the log file, "" means log to stderr. … … 230 230 231 231 # the pid file. Can be an absolute path outside of chroot/work dir. 232 # pidfile: "/ usr/local/etc/unbound/unbound.pid"232 # pidfile: "/var/unbound/unbound.pid" 233 233 234 234 # file to read root hints from. … … 343 343 # Please note usage of unbound-anchor root anchor is at your own risk 344 344 # and under the terms of our LICENSE (see that file in the source). 345 # auto-trust-anchor-file: "/ usr/local/etc/unbound/root.key"345 # auto-trust-anchor-file: "/var/unbound/root.key" 346 346 347 347 # File with DLV trusted keys. Same format as trust-anchor-file. … … 533 533 python: 534 534 # Script file to load 535 # python-script: "/ usr/local/etc/unbound/ubmodule-tst.py"535 # python-script: "/var/unbound/ubmodule-tst.py" 536 536 537 537 # Remote control config section. … … 550 550 551 551 # unbound server key file. 552 # server-key-file: "/ usr/local/etc/unbound/unbound_server.key"552 # server-key-file: "/var/unbound/unbound_server.key" 553 553 554 554 # unbound server certificate file. 555 # server-cert-file: "/ usr/local/etc/unbound/unbound_server.pem"555 # server-cert-file: "/var/unbound/unbound_server.pem" 556 556 557 557 # unbound-control key file. 558 # control-key-file: "/ usr/local/etc/unbound/unbound_control.key"558 # control-key-file: "/var/unbound/unbound_control.key" 559 559 560 560 # unbound-control certificate file. 561 # control-cert-file: "/ usr/local/etc/unbound/unbound_control.pem"561 # control-cert-file: "/var/unbound/unbound_control.pem" 562 562 563 563 # Stub zones.
Note:
See TracChangeset
for help on using the changeset viewer.