Compare commits

..

5 Commits

Author SHA1 Message Date
71e7326a99 fix: force octet-stream for seeded txt files
Some checks failed
cc-ci/testme cc-ci: failure
2026-06-01 20:03:03 +00:00
ee5cb811c6 fix: seed stale mime assertion instead of docroot move
All checks were successful
cc-ci/testme cc-ci: success
2026-06-01 20:00:58 +00:00
194915b078 fix: use /var/www/html for seeded docroot move
Some checks failed
cc-ci/testme cc-ci: failure
2026-06-01 19:55:08 +00:00
9802e61496 fix: move docroot seed to /srv/www/html with config v7
Some checks failed
cc-ci/testme cc-ci: failure
2026-05-31 19:54:21 +00:00
fc2c80cfac feat: move custom-html docroot to /var/www/html
Some checks failed
cc-ci/testme cc-ci: failure
2026-05-31 19:50:41 +00:00
4 changed files with 11 additions and 4 deletions

View File

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

View File

@ -3,7 +3,7 @@ services:
git: git:
environment: environment:
- GIT_REPO_URL - GIT_REPO_URL
image: alpine/git:v2.52.0 image: alpine/git:v2.49.1
entrypoint: /docker-entrypoint.sh entrypoint: /docker-entrypoint.sh
volumes: volumes:
- content:/git - content:/git

View File

@ -3,7 +3,7 @@ version: "3.8"
services: services:
app: app:
image: nginx:1.31.1 image: nginx:1.29.0
networks: networks:
- proxy - proxy
deploy: deploy:
@ -19,7 +19,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect" - "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.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=1.13.0+1.31.1" - "coop-cloud.${STACK_NAME}.version=1.11.2+1.29.0"
- "backupbot.backup=true" - "backupbot.backup=true"
- "backupbot.backup.path=/usr/share/nginx/html" - "backupbot.backup.path=/usr/share/nginx/html"
environment: environment:

View File

@ -7,6 +7,13 @@ server {
#charset koi8-r; #charset koi8-r;
#access_log /var/log/nginx/host.access.log main; #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 / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html index.htm; index index.html index.htm;