harmony/harmony-rs/opnsense-config-xml/src/data/mod.rs
Jean-Gabriel Gill-Couture 81d40ec163 feat(opnsense-config): add caddy module with configuration management
Introduce a new Caddy module within opnsense-config to manage Caddy server configurations. This includes enabling/disabling Caddy, setting ports, and reloading/restarting the service via OPNsense shell commands. Additionally, provide a sample Caddy configuration file for PXE booting and a test file in the pxe-http-files directory.
2025-01-07 17:12:39 -05:00

11 lines
165 B
Rust

mod opnsense;
mod interfaces;
mod dhcpd;
mod haproxy;
mod caddy;
pub use caddy::*;
pub use haproxy::*;
pub use opnsense::*;
pub use interfaces::*;
pub use dhcpd::*;