forked from coop-cloud/traefik
Compare commits
1 Commits
2.0.4+v2.9
...
error-page
Author | SHA1 | Date | |
---|---|---|---|
a805f5de26 |
20
.drone.yml
20
.drone.yml
@ -3,12 +3,10 @@ kind: pipeline
|
|||||||
name: deploy to swarm-test.autonomic.zone
|
name: deploy to swarm-test.autonomic.zone
|
||||||
steps:
|
steps:
|
||||||
- name: deployment
|
- name: deployment
|
||||||
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
|
image: decentral1se/stack-ssh-deploy:latest
|
||||||
settings:
|
settings:
|
||||||
host: swarm-test.autonomic.zone
|
host: swarm-test.autonomic.zone
|
||||||
stack: traefik
|
stack: traefik
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
deploy_key:
|
deploy_key:
|
||||||
from_secret: drone_ssh_swarm_test
|
from_secret: drone_ssh_swarm_test
|
||||||
environment:
|
environment:
|
||||||
@ -24,17 +22,11 @@ trigger:
|
|||||||
- master
|
- master
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: generate recipe catalogue
|
name: recipe release
|
||||||
steps:
|
steps:
|
||||||
- name: release a new version
|
- name: release a new version
|
||||||
image: plugins/downstream
|
image: thecoopcloud/drone-abra:latest
|
||||||
settings:
|
settings:
|
||||||
server: https://build.coopcloud.tech
|
command: recipe traefik release
|
||||||
token:
|
deploy_key:
|
||||||
from_secret: drone_abra-bot_token
|
from_secret: abra_bot_deploy_key
|
||||||
fork: true
|
|
||||||
repositories:
|
|
||||||
- coop-cloud/auto-recipes-catalogue-json
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
event: tag
|
|
||||||
|
@ -15,6 +15,9 @@ COMPOSE_FILE="compose.yml"
|
|||||||
# General settings #
|
# General settings #
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
|
## Error pages
|
||||||
|
COMPOSE_FILE="$COMPOSE_FILE:compose.error-pages.yml"
|
||||||
|
|
||||||
## Host-mode networking
|
## Host-mode networking
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.host.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.host.yml"
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
1. Set up Docker Swarm and [`abra`]
|
1. Set up Docker Swarm and [`abra`]
|
||||||
2. `abra app new traefik`
|
2. `abra app new traefik`
|
||||||
3. `abra app config YOURAPPDOMAIN` - be sure to change `DOMAIN` to something that resolves to
|
3. `abra app YOURAPPDOMAIN config` - be sure to change `DOMAIN` to something that resolves to
|
||||||
your Docker swarm box
|
your Docker swarm box
|
||||||
4. `abra app deploy YOURAPPDOMAIN`
|
4. `abra app deploy YOURAPPDOMAIN`
|
||||||
|
|
||||||
|
36
compose.error-pages.yml
Normal file
36
compose.error-pages.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
error-pages:
|
||||||
|
image: tarampampam/error-pages:latest # Using the latest tag is highly discouraged. Please, use tags in X.Y.Z format
|
||||||
|
environment:
|
||||||
|
TEMPLATE_NAME: app-down
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
deploy:
|
||||||
|
placement:
|
||||||
|
constraints:
|
||||||
|
- node.role == worker
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.docker.network=proxy"
|
||||||
|
- # use as "fallback" for any non-registered services (with priority below normal)
|
||||||
|
- "traefik.http.routers.error-pages-router.rule=HostRegexp(`{host:.+}`)"
|
||||||
|
- "traefik.http.routers.error-pages-router.priority=10"
|
||||||
|
- # should say that all of your services work on https
|
||||||
|
- "traefik.http.routers.error-pages-router.tls=true"
|
||||||
|
- "traefik.http.routers.error-pages-router.entrypoints=https"
|
||||||
|
- "traefik.http.routers.error-pages-router.middlewares=error-pages-middleware"
|
||||||
|
- "traefik.http.services.error-pages-service.loadbalancer.server.port=8080"
|
||||||
|
- # "errors" middleware settings
|
||||||
|
- "traefik.http.middlewares.error-pages-middleware.errors.status=400-599"
|
||||||
|
- "traefik.http.middlewares.error-pages-middleware.errors.service=error-pages-service"
|
||||||
|
- "traefik.http.middlewares.error-pages-middleware.errors.query=/{status}.html"
|
||||||
|
|
||||||
|
app:
|
||||||
|
deploy:
|
||||||
|
labels:
|
||||||
|
# next line is important
|
||||||
|
- "traefik.http.routers.${STACK_NAME}.middlewares=error-pages-middleware"
|
||||||
|
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80"
|
||||||
|
|
@ -44,9 +44,10 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
|
||||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||||
|
- "traefik.http.routers.${STACK_NAME}.tls.options=default@file"
|
||||||
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
|
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
|
||||||
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
|
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
|
||||||
- "coop-cloud.${STACK_NAME}.version=2.0.4+v2.9.6"
|
- "coop-cloud.${STACK_NAME}.version=2.0.3+v2.9.6"
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
proxy:
|
||||||
|
Reference in New Issue
Block a user