Bird
0
0

Which of the following settings is NOT typically checked by manage.py check --deploy for security?

easy📝 Conceptual Q2 of 15
Django - Security Best Practices
Which of the following settings is NOT typically checked by manage.py check --deploy for security?
ASECURE_HSTS_SECONDS
BINSTALLED_APPS
CDEBUG
DSECURE_SSL_REDIRECT
Step-by-Step Solution
Solution:
  1. Step 1: Identify settings checked by the deploy check

    The deploy check looks for security-related settings like DEBUG, SECURE_HSTS_SECONDS, and SECURE_SSL_REDIRECT.
  2. Step 2: Recognize unrelated settings

    INSTALLED_APPS is about which apps are enabled, not a security setting checked by this command.
  3. Final Answer:

    INSTALLED_APPS -> Option B
  4. Quick Check:

    Non-security setting = B [OK]
Quick Trick: Deploy check ignores INSTALLED_APPS setting [OK]
Common Mistakes:
MISTAKES
  • Assuming INSTALLED_APPS affects security checks
  • Confusing DEBUG with app configuration
  • Thinking all settings are checked

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Django Quizzes