django-simple-certmanager 2.3.0

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

djangosimplecertmanager 2.3.0

1 django-simple-certmanager

Version:
2.3.0

Source:
https://github.com/maykinmedia/django-simple-certmanager

Keywords:
certificates




Manage TLS certificates and keys in the Django admin

Contents

1 django-simple-certmanager
2 Features
3 Installation

3.1 Requirements
3.2 Install


4 Usage




2 Features

Manage (mutual) TLS certificates
Certificate introspection and validation
Certificate/key files stored in private media
Certificate/key files deleted when the database record is deleted



3 Installation

3.1 Requirements

Python 3.10 or above
Django 3.2 or newer



3.2 Install
You can install Django Simple Certmanager either via the Python Package
Index (PyPI) or from source.
To install using pip:
pip install django-simple-certmanager



4 Usage
To use this with your project you need to follow these steps:

Add Django Simple Certmanager to INSTALLED_APPS in your Django
project’s settings.py:
INSTALLED_APPS = (
# ...,
"privates", # Needed for admin usage.
"simple_certmanager"
)

Make sure you configure Django Privates correctly and set the (currently)
undocumented settings:
PRIVATE_MEDIA_ROOT = os.path.join(BASE_DIR, "private-media")
PRIVATE_MEDIA_URL = "/private-media/"

Run the migrations

python manage.py migrate

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.