nginx-discovery 0.4.0

Parse, analyze, and extract information from NGINX configurations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! High-level types for NGINX configuration elements

mod access_log;
mod error_log;
mod listen;
mod location;
mod log_format;
mod server;

pub use access_log::{AccessLog, LogContext};
pub use error_log::{ErrorLog, ErrorLogLevel};
pub use listen::ListenDirective;
pub use location::{Location, LocationModifier};
pub use log_format::LogFormat;
pub use server::Server;