feat: add PHP ini management system and update infrastructure configs
- Add PHP ini management classes (Access, IniDirective, IniKey, PhpIni) - Update deployment configurations (Wireguard, Traefik, Monitoring) - Add DNS stack and Ansible role - Add deployment debugging playbooks - Update framework components (FilePath, RedisConnectionPool) - Update .gitignore and documentation
This commit is contained in:
15
deployment/ansible/templates/dns-Corefile.j2
Normal file
15
deployment/ansible/templates/dns-Corefile.j2
Normal file
@@ -0,0 +1,15 @@
|
||||
. {
|
||||
log
|
||||
errors
|
||||
health :8053
|
||||
hosts {
|
||||
{% for record in dns_records %}
|
||||
{{ record.address }} {{ record.host }}
|
||||
{% endfor %}
|
||||
fallthrough
|
||||
}
|
||||
{% if dns_forwarders | length > 0 %}
|
||||
forward . {{ dns_forwarders | join(' ') }}
|
||||
{% endif %}
|
||||
cache 30
|
||||
}
|
||||
Reference in New Issue
Block a user