update 2025-04-06
Changes: - fix README.md old json format usage - rename "redirect" option to "proxy_pass" - move docker-compose.yml and nginx.conf.j2 to examples and add to .gitignore - fix situation when one domain from domains.txt and servers.yaml appeared twice in nginx.conf
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
FROM python:3.10-alpine as builder
|
||||
FROM python:3.10-alpine AS builder
|
||||
|
||||
COPY add_servers.py /add_servers.py
|
||||
COPY domains.txt /domains.txt
|
||||
@@ -18,8 +18,7 @@ COPY domains.txt /domains.txt
|
||||
|
||||
RUN echo "(sleep 120 && killall nginx) &" > /entrypoint && \
|
||||
echo "cp /domains.txt /ssl/domains.txt" >> /entrypoint && \
|
||||
echo "nginx -g 'daemon off;'" >> /entrypoint && \
|
||||
echo "nginx" >> /entrypoint
|
||||
echo "nginx -g 'daemon off;'" >> /entrypoint
|
||||
|
||||
ENTRYPOINT ["/bin/sh"]
|
||||
CMD ["/entrypoint"]
|
||||
|
||||
Reference in New Issue
Block a user