Compare commits

...
Author SHA1 Message Date
Brooke 1843123da3 chore: publish 1.14.0+1.31.5 release 2026-09-06 18:00:48 -04:00
Brooke a037226132 Merge branch 'main' of https://git.coopcloud.tech/coop-cloud/custom-html 2026-09-06 17:58:10 -04:00
Brooke 3b9755851d chore: update image tags 2026-09-06 17:57:08 -04:00
Brooke 0f7e122153 support pinning dependencies 2026-09-06 21:53:00 +00:00
Renovate Bot 2cb962eaa6 chore: Configure Renovate (#7)
Welcome to [Renovate](https://github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.

---
### Detected Package Files

 * `compose.git-pull.yml` (docker-compose)
 * `compose.sftp.yml` (docker-compose)
 * `compose.sso.yml` (docker-compose)
 * `compose.yml` (docker-compose)
 * `.drone.yml` (droneci)

### Configuration Summary

Based on the default config's presets, Renovate will:

  - Start dependency updates only once this onboarding PR is merged
  - Enable Renovate Dependency Dashboard creation.
  - Use semantic commit type `fix` for dependencies and `chore` for all others if semantic commits are in use.
  - Ignore `node_modules`, `bower_components`, `vendor` and various test/tests (except for nuget) directories.
  - Group known monorepo packages together.
  - Use curated list of recommended non-monorepo package groupings.
  - Show only the Age and Confidence Merge Confidence badges for pull requests.
  - Apply crowd-sourced package replacement rules.
  - Apply crowd-sourced workarounds for known problems with packages.

🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to `renovate.json` in this branch. Renovate will update the Pull Request description the next time it runs.

---

### What to Expect

With your current configuration, Renovate will create 1 Pull Request:

<details>
<summary>chore(deps): update nginx docker tag to v1.31.5</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/nginx-1.x`
  - Merge into: `main`
  - Upgrade nginx to `1.31.5`

</details>

---

 Got questions? Check out Renovate's [Docs](https://docs.renovatebot.com/), particularly the Getting Started section.
If you need any further assistance then you can also [request help here](https://github.com/renovatebot/renovate/discussions).

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

<!--renovate-config-hash:e80b4e42a3043bc12fa0640db4bac392d2bf770acf841360d7c8ceeeac2ec1a9-->

Reviewed-on: https://git.coopcloud.tech/coop-cloud/custom-html/pulls/7
Co-authored-by: Renovate Bot <renovate@coopcloud.tech>
2026-09-03 08:39:58 +00:00
notplants d73b09fabb chore: publish 1.13.2+1.31.3 release 2026-08-03 16:58:26 -04:00
notplants fca12f16a4 Merge pull request 'Fix force https redirect' (#11) from fix-force-https-redirect into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/custom-html/pulls/11
2026-08-03 20:57:47 +00:00
notplants dcc24f8c15 docs: correct redirect comment to reflect force-https behavior 2026-08-03 20:55:58 +00:00
Ammar Hussein 22179d81e5 [mass update] fix supporting multiple domains while enforcing ssl 2026-08-03 20:55:49 +00:00
notplants f955fe0f10 chore: publish 1.13.1+1.31.3 release 2026-08-03 14:15:15 -04:00
notplants 2ce751dd28 Merge pull request 'Upgrade 1.14.0+1.31.1' (#10) from upgrade-1.14.0+1.31.1 into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/custom-html/pulls/10
2026-08-03 18:09:32 +00:00
cc-ci 01a55eef76 chore: upgrade app to nginx 1.31.3
cc-ci/testme cc-ci: success
2026-07-24 03:41:00 +00:00
autonomic-bot 817ee13659 chore: upgrade app to nginx 1.31.2, git to alpine/git v2.54.0
cc-ci/testme cc-ci: success
2026-06-22 20:48:35 +00:00
notplants e668be0f81 chore: upgrade to 1.14.0+1.31.1
cc-ci/testme cc-ci: success
2026-06-17 01:04:02 +01:00
trav 2b82ebabde Merge pull request 'pr-20260518-194117' (#9) from pr-20260518-194117 into main
Reviewed-on: https://git.coopcloud.tech/coop-cloud/custom-html/pulls/9
2026-06-02 17:49:20 +00:00
trav df2e27339f chore: upgrade to 1.13.0+1.31.1
cc-ci/testme cc-ci: success
2026-06-02 02:04:15 +00:00
3 changed files with 20 additions and 6 deletions
+1 -1
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.54.0
entrypoint: /docker-entrypoint.sh entrypoint: /docker-entrypoint.sh
volumes: volumes:
- content:/git - content:/git
+5 -5
View File
@@ -3,7 +3,7 @@ version: "3.8"
services: services:
app: app:
image: nginx:1.30.1 image: nginx:1.31.5
networks: networks:
- proxy - proxy
deploy: deploy:
@@ -15,11 +15,11 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "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}"
# Redirect from EXTRA_DOMAINS to DOMAIN # Force HTTPS (redirect http -> https) on DOMAIN and any EXTRA_DOMAINS
- "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.redirectscheme.scheme=https"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" - "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.permanent=true"
- "coop-cloud.${STACK_NAME}.version=1.12.0+1.30.1" - "coop-cloud.${STACK_NAME}.version=1.14.0+1.31.5"
- "backupbot.backup=true" - "backupbot.backup=true"
- "backupbot.backup.path=/usr/share/nginx/html" - "backupbot.backup.path=/usr/share/nginx/html"
environment: environment:
+14
View File
@@ -0,0 +1,14 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchDatasources": [
"docker"
],
"pinDigests": true
}
]
}