Simple docker compose manifest for deploy of SSTP server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM nginx:alpine
|
|
|
|
ENV HTTPS_UPSTREAM="proxy"
|
|
ENV SSTP_UPSTREAM="sstp"
|
|
ENV SNI_NAME="api.bearns.me"
|
|
ENV CA_CERT="ca.pem"
|
|
|
|
COPY nginx.conf /etc/nginx/
|
|
COPY stream.conf.template /etc/nginx/templates/
|
|
|
|
RUN rm -f /etc/nginx/conf.d/default.conf |