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:
14
deployment/stacks/dns/docker-compose.yml
Normal file
14
deployment/stacks/dns/docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
coredns:
|
||||
image: coredns/coredns:1.11.1
|
||||
container_name: coredns
|
||||
restart: unless-stopped
|
||||
network_mode: host
|
||||
command: -conf /etc/coredns/Corefile
|
||||
volumes:
|
||||
- ./Corefile:/etc/coredns/Corefile:ro
|
||||
healthcheck:
|
||||
# Disable healthcheck - CoreDNS is a minimal image without shell
|
||||
# CoreDNS runs fine (verified by DNS queries working correctly)
|
||||
# If needed, health can be checked externally via dig
|
||||
disable: true
|
||||
Reference in New Issue
Block a user