mirror of
https://github.com/distribution/distribution
synced 2024-11-12 05:45:51 +01:00
proxy: Do not configure HTTP secret for proxy registry (#4305)
This commit is contained in:
commit
bdd3d31fae
@ -155,7 +155,11 @@ func NewApp(ctx context.Context, config *configuration.Configuration) *App {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
app.configureSecret(config)
|
// Do not configure HTTP secret for a proxy registry as HTTP secret
|
||||||
|
// is only used for blob uploads and a proxy registry does not support blob uploads.
|
||||||
|
if !app.isCache {
|
||||||
|
app.configureSecret(config)
|
||||||
|
}
|
||||||
app.configureEvents(config)
|
app.configureEvents(config)
|
||||||
app.configureRedis(config)
|
app.configureRedis(config)
|
||||||
app.configureLogHook(config)
|
app.configureLogHook(config)
|
||||||
|
Loading…
Reference in New Issue
Block a user