mirror of
https://github.com/Thumbscrew/matrix-homeserver-docker-compose.git
synced 2025-07-03 03:19:04 +00:00
add nginx reverse proxy
This commit is contained in:
9
nginx/Dockerfile
Normal file
9
nginx/Dockerfile
Normal file
@ -0,0 +1,9 @@
|
||||
FROM nginx:latest
|
||||
|
||||
COPY default.conf /tmp/nginx/default.conf
|
||||
|
||||
COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh
|
||||
RUN chmod 755 /tmp/docker-entrypoint.sh
|
||||
ENTRYPOINT [ "/tmp/docker-entrypoint.sh" ]
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
Reference in New Issue
Block a user