Features: - JSON logging of HTTP requests to Unix domain socket - Configurable HTTP headers logging (flat JSON structure) - Header value truncation and count limits - Automatic reconnect on socket disconnection - Error reporting with throttling Configuration directives: - JsonSockLogEnabled: Enable/disable logging - JsonSockLogSocket: Unix socket path - JsonSockLogHeaders: List of headers to log - JsonSockLogMaxHeaders: Maximum headers to log - JsonSockLogMaxHeaderValueLen: Max header value length - JsonSockLogReconnectInterval: Reconnect delay - JsonSockLogErrorReportInterval: Error log throttle Includes: - Module source code (src/) - Unit and integration tests (tests/, scripts/) - Documentation (README.md, architecture.yml) - Build configuration (CMakeLists.txt, Makefile) - Packaging (deb/rpm) Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
34 lines
589 B
Docker
34 lines
589 B
Docker
# Dockerfile for building mod_reqin_log (minimal - no tests)
|
|
FROM rockylinux:8
|
|
|
|
# Install build dependencies
|
|
RUN dnf install -y epel-release && \
|
|
dnf install -y \
|
|
gcc \
|
|
make \
|
|
httpd \
|
|
httpd-devel \
|
|
apr-devel \
|
|
apr-util-devel \
|
|
python3 \
|
|
curl \
|
|
redhat-rpm-config \
|
|
&& dnf clean all
|
|
|
|
# Set working directory
|
|
WORKDIR /build
|
|
|
|
# Copy source files
|
|
COPY src/ src/
|
|
COPY Makefile Makefile
|
|
COPY conf/ conf/
|
|
|
|
# Build the module
|
|
RUN make APXS=/usr/bin/apxs
|
|
|
|
# Verify module was built
|
|
RUN ls -la modules/mod_reqin_log.so
|
|
|
|
# Default command
|
|
CMD ["/bin/bash"]
|