3 Commits

3 changed files with 3 additions and 9 deletions

View File

@ -9,10 +9,6 @@ LETS_ENCRYPT_ENV=production
HTTP_SUBDIR=
COMPOSE_FILE="compose.yml"
## Serve dot-prefixed files/directories (e.g. /.well-known/).
## Defaults to true (hidden). Set false to expose them.
#SERVER_IGNORE_HIDDEN_FILES=false
# Single Sign On via Traefik "file provider"
#COMPOSE_FILE="$COMPOSE_FILE:compose.sso.yml"

View File

@ -23,6 +23,6 @@ Custom HTML website, served using thttpd
5. `abra app deploy YOURAPPDOMAIN`
6. Copy your files to the container, using something like
```
abra app YOURAPPDOMAIN cp index.html app:/content
abra app cp YOURAPPDOMAIN index.html app:/var/www/http
```

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: joseluisq/static-web-server:2.38.0
image: joseluisq/static-web-server:nonexistent-cc-ci-canary-bad
command: ["-a", "0.0.0.0", "-p", "80", "-g", "warn", "-d", "/var/www/http/$HTTP_SUBDIR"]
networks:
- proxy
@ -17,10 +17,9 @@ services:
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
# Redirect from EXTRA_DOMAINS to DOMAIN
- "coop-cloud.${STACK_NAME}.version=1.0.2+2.38.0"
- "coop-cloud.${STACK_NAME}.version=1.0.1+2.38.0"
environment:
- HTTP_SUBDIR
- SERVER_IGNORE_HIDDEN_FILES
volumes:
- content:/var/www/http
@ -30,4 +29,3 @@ volumes:
networks:
proxy:
external: true