From 0f85cc1c9b110fcaeecd3bc1799758032b352466 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sun, 17 Feb 2019 12:44:00 +0100 Subject: [PATCH] update DNS --- README.md | 9 +++++---- docker-compose.yml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61cb3c1..08687ae 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,9 @@ pip3 install --user matrix-client - Use [Traefik](https://traefik.io/) on the `web` docker network, eg. with [proxyta.net](https://framagit.org/oxyta.net/proxyta.net) -- Put the configuration into a `.env` file (don't forget about `CHATONS_DOMAIN`, otherwise by default you will stay on - `localhost`) +- Put the configuration into a `.env` file +- Configure your DNS for `${CHATONS_SERVICE:-matrixwebhook}.${CHATONS_DOMAIN:-localhost}` **and** + `www.${CHATONS_SERVICE:-matrixwebhook}.${CHATONS_DOMAIN:-localhost}` ``` docker-compose up -d @@ -32,6 +33,6 @@ docker-compose up -d ## Test / Usage ``` -curl -d '{"text":"new contrib from toto: http://radio.localhost/map/#44", "key": "secret"}' mwh.localhost +curl -d '{"text":"new contrib from toto: http://radio.localhost/map/#44", "key": "secret"}' matrixwebhook.localhost ``` -(or mwh.localhost:4785 without docker) +(or matrixwebhook.localhost:4785 without docker) diff --git a/docker-compose.yml b/docker-compose.yml index fb004e1..b5fe893 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,4 +14,4 @@ services: - web labels: traefik.enable: "true" - traefik.frontend.rule: "Host: ${CHATONS_SERVICE:-mwh}.${CHATONS_DOMAIN:-localhost}, www.${CHATONS_SERVICE:-mwh}.${CHATONS_DOMAIN:-localhost}" + traefik.frontend.rule: "Host: ${CHATONS_SERVICE:-matrixwebhook}.${CHATONS_DOMAIN:-localhost}, www.${CHATONS_SERVICE:-matrixwebhook}.${CHATONS_DOMAIN:-localhost}"