Skip to content

Commit

Permalink
chore(deps): do not attempt to update nginx (#2017)
Browse files Browse the repository at this point in the history
  • Loading branch information
drazisil committed Aug 19, 2024
1 parent e842599 commit 9cbbbf3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .renovaterc.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extends": [
"config:best-practices",
":automergeStableNonMajor"
],
"packageRules": [
{
"allowedVersions": "1.9.8",
"matchDatasources": [
"docker"
],
"matchPackageNames": [
// Prevent automatic updates from nginx:1.9.8
// While this image can still be found on DockerHub,
// it is also archived at https://archive.org/details/nginx_1.9.8.tar
// This is required to serve as a proxy to the [SChannel](https://web.archive.org/web/20230402130420/https://learn.microsoft.com/en-us/windows/win32/com/schannel) that Windows XP uses.
// Windows XP is required support since the legacy client can not be upgraded or modified.
"nginx"
]
}
],
}

0 comments on commit 9cbbbf3

Please sign in to comment.