Metadata-Version: 1.1
Name: django-wellknown-security
Version: 0.1
Summary: A Django app to private security.txt details
Home-page: https://www.secitec.net
Author: Peter Gastinger
Author-email: peter@secitec.net
License: BSD-2-Clause
Description: =======================
        Well-Known security.txt
        =======================
        
        https://securitytxt.org/
        A proposed standard which allows websites to define security policies.
        
        based on:
        https://adamj.eu/tech/2020/06/28/how-to-add-a-well-known-url-to-your-django-site/
        
        Quick start
        -----------
        1. Add "polls" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'wellknown_security',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('.wll-known/', include('wellknown_security.urls')),
        
        
        3. Add at least the contact info to settings.py
        
           WELLKNOWN_SECURITY_CONTACT = "contact@tld.org"
        
        4. Start the development server and visit http://127.0.0.1:8000/.well-known/security.txt
           to check the results
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
