soli-proxy 0.6.1

A fast, configurable reverse proxy with automatic HTTPS, Lua scripting, and blue-green deployments
Documentation
1
2
3
4
5
6
7
8
9
FROM rust:1-bookworm AS builder
WORKDIR /app
COPY . .
RUN cargo build --release

FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder /app/target/release/soli-proxy /usr/local/bin/soli-proxy
ENTRYPOINT ["soli-proxy"]