[컴][웹] 구글 앱 엔진 web app 대신에 Django 이용하기 5 - SECRET_KEY








장고(Django) 의 secret key


settings.py 에 보면 SECRET_KEY 가 존재한다. 이 SECRET_KEY 가 왜 필요한지에 대한 설명이 Ref. 1 에 나와 있다. 대체로 Django 안에서 사용되는 여러가지 hash 값들을 만드는 데에 쓰이는 듯 하다. 자세한 내용은 Ref.1 을 참고하도록 하자.

# Activate django-dbindexer for the default database
DATABASES['native'] = DATABASES['default']
DATABASES['default'] = {'ENGINE': 'dbindexer', 'TARGET': 'native'}
AUTOLOAD_SITECONF = 'indexes'

SECRET_KEY = '=r-$b*8hglm+858&9t043hlm6-&6-3d3vfc4((7yd0dbrakhvi'

INSTALLED_APPS = (
#    'django.contrib.admin',
    'django.contrib.contenttypes',
    'django.contrib.auth',
    'django.contrib.sessions',
    'djangotoolbox',
    'autoload',
    'dbindexer',

    # djangoappengine should come last, so it can override a few manage.py commands
    'djangoappengine',
    
    # my app
    'muchart',
) 



References

  1. http://stackoverflow.com/questions/7382149/django-secret-key

댓글 없음:

댓글 쓰기