[PR #9987] [CLOSED] feat: added support for redis certificate authority path #13545

Closed
opened 2025-12-29 23:19:28 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/9987
Author: @Kerwood
Created: 8/12/2022
Status: Closed

Base: developHead: feat/ssl-ca-certs


📝 Commits (1)

  • 2541fd9 feat: added setting redis certificate authority path

📊 Changes

2 files changed (+15 additions, -1 deletions)

View changed files

📝 netbox/netbox/configuration_example.py (+4 -0)
📝 netbox/netbox/settings.py (+11 -1)

📄 Description

Added support for using a certificate authority when using self signed certificates for Redis.

Example configuration.

REDIS:
  tasks:
    HOST: "<ip>"
    PORT: 6378
    DATABASE: 0
    SSL: true
    INSECURE_SKIP_TLS_VERIFY: false
    CA_CERT_PATH: /etc/ssl/certs/ca.crt
  caching:
    HOST: "<ip>"
    PORT: 6378
    DATABASE: 1
    SSL: true
    INSECURE_SKIP_TLS_VERIFY: false
    CA_CERT_PATH: /etc/ssl/certs/ca.crt

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/9987 **Author:** [@Kerwood](https://github.com/Kerwood) **Created:** 8/12/2022 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `feat/ssl-ca-certs` --- ### 📝 Commits (1) - [`2541fd9`](https://github.com/netbox-community/netbox/commit/2541fd9aa0983655343beae4f53d3089b2c04e1d) feat: added setting redis certificate authority path ### 📊 Changes **2 files changed** (+15 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `netbox/netbox/configuration_example.py` (+4 -0) 📝 `netbox/netbox/settings.py` (+11 -1) </details> ### 📄 Description Added support for using a certificate authority when using self signed certificates for Redis. Example configuration. ```yaml REDIS: tasks: HOST: "<ip>" PORT: 6378 DATABASE: 0 SSL: true INSECURE_SKIP_TLS_VERIFY: false CA_CERT_PATH: /etc/ssl/certs/ca.crt caching: HOST: "<ip>" PORT: 6378 DATABASE: 1 SSL: true INSECURE_SKIP_TLS_VERIFY: false CA_CERT_PATH: /etc/ssl/certs/ca.crt ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 23:19:28 +01:00
adam closed this issue 2025-12-29 23:19:29 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13545