This repository has been archived on 2023-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
max/ansible/roles/static/templates/docker-compose.yml.j2

27 lines
864 B
Text
Raw Permalink Normal View History

2023-01-26 07:20:38 +00:00
version: "3.8"
services:
blog:
image: nginx
container_name: blog
2023-01-27 10:35:01 +00:00
restart: always
2023-01-26 07:20:38 +00:00
volumes:
- {{ service_dir }}/git/templates:/etc/nginx/templates
- {{ service_dir }}/git/_site:/var/www/blog
- {{ service_dir }}/nginx.conf:/etc/nginx/conf.d/default.conf
- {{ service_dir }}/security.txt:/var/www/blog/security.txt
2023-01-26 07:20:38 +00:00
networks:
- traefik
labels:
- traefik.enable=true
2023-01-26 07:20:38 +00:00
- traefik.http.routers.blog.entrypoints=websecure
- "traefik.http.routers.blog.rule=(Host(`{{ domain_name_pim }}`) || Path(`/security.txt`, `/.well-known/security.txt`))"
2023-01-26 07:20:38 +00:00
- traefik.http.routers.blog.tls=true
2023-02-08 07:27:30 +00:00
- traefik.http.routers.blog.tls.certresolver=letsencrypt
2023-01-26 07:20:38 +00:00
- traefik.http.routers.blog.service=blog
- traefik.http.services.blog.loadbalancer.server.port=80
networks:
traefik:
external: true