Add initial setup for Central DNS and PXE services using dnsmasq

- Created README.md for Central setup documentation.
- Added dnsmasq configuration files and scripts for setting up DNS and PXE booting.
- Implemented nginx configuration to serve PXE boot assets.
- Developed setup.sh script to automate installation and configuration of dnsmasq and nginx.
- Removed outdated dnsmasq setup guide from documentation.
This commit is contained in:
2025-06-20 16:38:45 -07:00
parent 02a282899b
commit e2485627b1
10 changed files with 46 additions and 10 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 80;
server_name _;
location / {
autoindex on;
root /var/www/html/talos;
}
}