V5/V6 stale-test verification - custom-html docroot move (DO NOT MERGE) #3

Closed
autonomic-bot wants to merge 5 commits from v5-stale-docroot into main
3 changed files with 9 additions and 2 deletions

View File

@ -1,2 +1,2 @@
export NGINX_DEFAULT_CONF_VERSION=v6
export NGINX_DEFAULT_CONF_VERSION=v7
export ENTRYPOINT_CONF_VERSION=v3

View File

@ -19,7 +19,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=1.11.0+1.29.0"
- "coop-cloud.${STACK_NAME}.version=1.11.2+1.29.0"
- "backupbot.backup=true"
- "backupbot.backup.path=/usr/share/nginx/html"
environment:

View File

@ -7,6 +7,13 @@ server {
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location ~ \.txt$ {
root /usr/share/nginx/html;
types { }
default_type application/octet-stream;
try_files $uri =404;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;