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.
11 lines
165 B
Rust
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::*;
|