docker_wrapper/template/web/mod.rs
1//! Web server template collection
2//!
3//! This module provides templates for web servers and reverse proxies:
4//! - Nginx for static content and reverse proxy
5//! - Apache HTTP Server (future)
6//! - Caddy Server (future)
7//! - Traefik (future)
8
9#[cfg(feature = "template-nginx")]
10pub mod nginx;
11#[cfg(feature = "template-nginx")]
12pub use nginx::NginxTemplate;