Advertisement
Guest User

error company register verify

a guest
May 26th, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.65 KB | None | 0 0
  1. AttributeError at /api/v1/authentication/employer/register/verify/
  2. 'NoneType' object has no attribute 'id'
  3.  
  4. Request Method: POST
  5. Request URL: http://192.168.5.171:9880/api/v1/authentication/employer/register/verify/
  6. Django Version: 2.1.7
  7. Python Executable: /root/cs_api/env/bin/python
  8. Python Version: 3.7.0
  9. Python Path: ['/root/cs_api', '/usr/local/lib/python37.zip', '/usr/local/lib/python3.7', '/usr/local/lib/python3.7/lib-dynload', '/root/cs_api/env/lib/python3.7/site-packages', '/']
  10. Server time: Mon, 27 May 2019 09:27:27 +0700
  11. Installed Applications:
  12. ['djadmin',
  13. 'advanced_filters',
  14. 'django.contrib.admin',
  15. 'django.contrib.auth',
  16. 'django.contrib.sites',
  17. 'django.contrib.contenttypes',
  18. 'django.contrib.sessions',
  19. 'django.contrib.messages',
  20. 'django.contrib.staticfiles',
  21. 'celery',
  22. 'rest_framework',
  23. 'rest_framework_jwt',
  24. 'django_filters',
  25. 'corsheaders',
  26. 'drf_yasg',
  27. 'anymail',
  28. 'allauth',
  29. 'allauth.account',
  30. 'allauth.socialaccount',
  31. 'allauth.socialaccount.providers.google',
  32. 'allauth.socialaccount.providers.twitter',
  33. 'allauth.socialaccount.providers.facebook',
  34. 'allauth.socialaccount.providers.instagram',
  35. 'allauth.socialaccount.providers.linkedin_oauth2',
  36. 'career_support_models',
  37. 'cs_administrator.apps.CsAdministratorConfig',
  38. 'cs_advertisement.apps.CsAdvertisementConfig',
  39. 'cs_authentication.apps.CsAuthenticationConfig',
  40. 'cs_billing.apps.CsBillingConfig',
  41. 'cs_core.apps.CsCoreConfig',
  42. 'cs_candidate.apps.CsCandidateConfig',
  43. 'cs_employer.apps.CsEmployerConfig',
  44. 'cs_faq.apps.CsFAQConfig',
  45. 'cs_history.apps.CsHistoryConfig',
  46. 'cs_interview.apps.CsInterviewConfig',
  47. 'cs_job.apps.CsJobConfig',
  48. 'cs_log.apps.CsLogConfig',
  49. 'cs_message.apps.CsMessageConfig',
  50. 'cs_news.apps.CsNewsConfig',
  51. 'cs_organization.apps.CsOrganizationConfig',
  52. 'cs_profile.apps.CsProfileConfig',
  53. 'cs_region.apps.CsRegionConfig',
  54. 'cs_requirement.apps.CsRequirementConfig',
  55. 'cs_school.apps.CsSchoolConfig',
  56. 'cs_social.apps.CsSocialConfig',
  57. 'cs_transaction.apps.CsTransactionConfig',
  58. 'cs_user.apps.CsUserConfig',
  59. 'dbbackup']
  60. Installed Middleware:
  61. ['django.middleware.security.SecurityMiddleware',
  62. 'corsheaders.middleware.CorsMiddleware',
  63. 'django.contrib.sessions.middleware.SessionMiddleware',
  64. 'django.middleware.common.CommonMiddleware',
  65. 'django.middleware.csrf.CsrfViewMiddleware',
  66. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  67. 'django.contrib.messages.middleware.MessageMiddleware',
  68. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  69. 'djadmin.middleware.DJMiddleware']
  70.  
  71.  
  72. Traceback:
  73.  
  74. File "/root/cs_api/env/lib/python3.7/site-packages/django/core/handlers/exception.py" in inner
  75. 34. response = get_response(request)
  76.  
  77. File "/root/cs_api/env/lib/python3.7/site-packages/django/core/handlers/base.py" in _get_response
  78. 126. response = self.process_exception_by_middleware(e, request)
  79.  
  80. File "/root/cs_api/env/lib/python3.7/site-packages/django/core/handlers/base.py" in _get_response
  81. 124. response = wrapped_callback(request, *callback_args, **callback_kwargs)
  82.  
  83. File "/root/cs_api/env/lib/python3.7/site-packages/django/views/decorators/csrf.py" in wrapped_view
  84. 54. return view_func(*args, **kwargs)
  85.  
  86. File "/root/cs_api/env/lib/python3.7/site-packages/django/views/generic/base.py" in view
  87. 68. return self.dispatch(request, *args, **kwargs)
  88.  
  89. File "/root/cs_api/env/lib/python3.7/site-packages/rest_framework/views.py" in dispatch
  90. 495. response = self.handle_exception(exc)
  91.  
  92. File "/root/cs_api/env/lib/python3.7/site-packages/rest_framework/views.py" in handle_exception
  93. 455. self.raise_uncaught_exception(exc)
  94.  
  95. File "/root/cs_api/env/lib/python3.7/site-packages/rest_framework/views.py" in dispatch
  96. 492. response = handler(request, *args, **kwargs)
  97.  
  98. File "/root/cs_api/cs_authentication/views/employer.py" in post
  99. 58. if serializer.is_valid():
  100.  
  101. File "/root/cs_api/env/lib/python3.7/site-packages/rest_framework/serializers.py" in is_valid
  102. 236. self._validated_data = self.run_validation(self.initial_data)
  103.  
  104. File "/root/cs_api/env/lib/python3.7/site-packages/rest_framework/serializers.py" in run_validation
  105. 437. value = self.validate(value)
  106.  
  107. File "/root/cs_api/cs_authentication/serializers/employer.py" in validate
  108. 196. payload = jwt_payload_handler(user)
  109.  
  110. File "/root/cs_api/cs_core/handlers/__init__.py" in jwt_payload_handler
  111. 79. payload['company_id'] = employerPersonals[0].employer.id
  112.  
  113. Exception Type: AttributeError at /api/v1/authentication/employer/register/verify/
  114. Exception Value: 'NoneType' object has no attribute 'id'
  115. Request information:
  116. USER: AnonymousUser
  117.  
  118. GET: No GET data
  119.  
  120. POST: No POST data
  121.  
  122. FILES: No FILES data
  123.  
  124. COOKIES: No cookie data
  125.  
  126. META:
  127. CONTENT_LENGTH = '2880'
  128. CONTENT_TYPE = 'application/json;charset=UTF-8'
  129. DJANGO_SETTINGS_MODULE = 'career_support_api.settings'
  130. GATEWAY_INTERFACE = 'CGI/1.1'
  131. HTTP_ACCEPT = 'application/json, text/plain, */*'
  132. HTTP_ACCEPT_ENCODING = 'gzip, deflate'
  133. HTTP_ACCEPT_LANGUAGE = 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7'
  134. HTTP_CACHE_CONTROL = 'no-cache'
  135. HTTP_CONNECTION = 'keep-alive'
  136. HTTP_HOST = '192.168.5.171:9880'
  137. HTTP_ORIGIN = 'http://0.0.0.0:8000'
  138. HTTP_PRAGMA = 'no-cache'
  139. HTTP_REFERER = 'http://0.0.0.0:8000/created-password'
  140. HTTP_USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'
  141. LANG = 'en_US.UTF-8'
  142. PATH = '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin'
  143. PATH_INFO = '/api/v1/authentication/employer/register/verify/'
  144. QUERY_STRING = ''
  145. REMOTE_ADDR = '192.168.5.130'
  146. REMOTE_HOST = ''
  147. REQUEST_METHOD = 'POST'
  148. RUN_MAIN = 'true'
  149. SCRIPT_NAME = ''
  150. SERVER_NAME = 'agencyportal'
  151. SERVER_PORT = '9880'
  152. SERVER_PROTOCOL = 'HTTP/1.1'
  153. SERVER_SOFTWARE = 'WSGIServer/0.2'
  154. TZ = 'Asia/Jakarta'
  155. wsgi.errors = <_io.TextIOWrapper name='<stderr>' mode='w' encoding='UTF-8'>
  156. wsgi.file_wrapper = ''
  157. wsgi.input = <django.core.handlers.wsgi.LimitedStream object at 0x7fc2028302e8>
  158. wsgi.multiprocess = False
  159. wsgi.multithread = True
  160. wsgi.run_once = False
  161. wsgi.url_scheme = 'http'
  162. wsgi.version = '(1, 0)'
  163.  
  164. Settings:
  165. Using settings module career_support_api.settings
  166. ABSOLUTE_URL_OVERRIDES = {}
  167. ADMINS = [('Dimas', 'dimas.ari@frisidea.com'), ('Surya', 'komang.suryadana@frisidea.com')]
  168. ADMIN_COLOR_THEME = 'blue'
  169. ADMIN_HEADER_TITLE = 'Career Support Administrator'
  170. ALLOWED_HOSTS = ['localhost', '127.0.0.1', '0abf327e.ngrok.io', '192.168.5.46', '192.168.5.171', '192.168.5.173']
  171. ANYMAIL = {'SENDGRID_API_KEY': '********************'}
  172. APPEND_SLASH = True
  173. AUTHENTICATION_BACKENDS = ['cs_core.backends.authentications_backend.SchoolAuthenticationBackend', 'cs_core.backends.authentications_backend.CandidateAuthenticationBackend', 'cs_core.backends.authentications_backend.EmployerAuthenticationBackend', 'allauth.account.auth_backends.AuthenticationBackend', 'django.contrib.auth.backends.ModelBackend']
  174. AUTH_PASSWORD_VALIDATORS = '********************'
  175. AUTH_USER_MODEL = 'career_support_models.User'
  176. BASE_DIR = '/root/cs_api'
  177. CACHES = {'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}}
  178. CACHE_MIDDLEWARE_ALIAS = 'default'
  179. CACHE_MIDDLEWARE_KEY_PREFIX = '********************'
  180. CACHE_MIDDLEWARE_SECONDS = 600
  181. CANDIDATE_PORTAL_URL = 'http://localhost:8000'
  182. CELERY_ACCEPT_CONTENT = ['application/json']
  183. CELERY_BROKER_URL = 'redis://localhost:6379'
  184. CELERY_RESULT_BACKEND = 'redis://localhost:6379'
  185. CELERY_RESULT_SERIALIZER = 'json'
  186. CELERY_TASK_SERIALIZER = 'json'
  187. CELERY_TIMEZONE = 'Asia/Jakarta'
  188. CORS_ORIGIN_ALLOW_ALL = True
  189. CSRF_COOKIE_AGE = 31449600
  190. CSRF_COOKIE_DOMAIN = None
  191. CSRF_COOKIE_HTTPONLY = False
  192. CSRF_COOKIE_NAME = 'csrftoken'
  193. CSRF_COOKIE_PATH = '/'
  194. CSRF_COOKIE_SAMESITE = 'Lax'
  195. CSRF_COOKIE_SECURE = False
  196. CSRF_FAILURE_VIEW = 'django.views.csrf.csrf_failure'
  197. CSRF_HEADER_NAME = 'HTTP_X_CSRFTOKEN'
  198. CSRF_TRUSTED_ORIGINS = []
  199. CSRF_USE_SESSIONS = False
  200. DATABASES = {'default': {'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'career_support', 'USER': 'frisidea', 'PASSWORD': '********************', 'HOST': '192.168.5.171', 'PORT': '5432', 'ATOMIC_REQUESTS': False, 'AUTOCOMMIT': True, 'CONN_MAX_AGE': 0, 'OPTIONS': {}, 'TIME_ZONE': None, 'TEST': {'CHARSET': None, 'COLLATION': None, 'NAME': None, 'MIRROR': None}}}
  201. DATABASE_ROUTERS = []
  202. DATA_UPLOAD_MAX_MEMORY_SIZE = 2621440
  203. DATA_UPLOAD_MAX_NUMBER_FIELDS = 1000
  204. DATETIME_FORMAT = 'N j, Y, P'
  205. DATETIME_INPUT_FORMATS = ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M', '%Y-%m-%d', '%m/%d/%Y %H:%M:%S', '%m/%d/%Y %H:%M:%S.%f', '%m/%d/%Y %H:%M', '%m/%d/%Y', '%m/%d/%y %H:%M:%S', '%m/%d/%y %H:%M:%S.%f', '%m/%d/%y %H:%M', '%m/%d/%y']
  206. DATE_FORMAT = 'N j, Y'
  207. DATE_INPUT_FORMATS = ['%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', '%b %d %Y', '%b %d, %Y', '%d %b %Y', '%d %b, %Y', '%B %d %Y', '%B %d, %Y', '%d %B %Y', '%d %B, %Y']
  208. DEBUG = True
  209. DEBUG_PROPAGATE_EXCEPTIONS = False
  210. DECIMAL_SEPARATOR = '.'
  211. DEFAULT_CHARSET = 'utf-8'
  212. DEFAULT_CONTENT_TYPE = 'text/html'
  213. DEFAULT_EXCEPTION_REPORTER_FILTER = 'django.views.debug.SafeExceptionReporterFilter'
  214. DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
  215. DEFAULT_FROM_EMAIL = 'noreply@frisidea.com'
  216. DEFAULT_INDEX_TABLESPACE = ''
  217. DEFAULT_TABLESPACE = ''
  218. DISALLOWED_USER_AGENTS = []
  219. DJADMIN_DYNAMIC_FIELD_DISPLAY = True
  220. DJADMIN_FIELD_DEPTH = 1
  221. EMAIL_BACKEND = 'anymail.backends.sendgrid.EmailBackend'
  222. EMAIL_HOST = 'localhost'
  223. EMAIL_HOST_PASSWORD = '********************'
  224. EMAIL_HOST_USER = ''
  225. EMAIL_PORT = 25
  226. EMAIL_SSL_CERTFILE = None
  227. EMAIL_SSL_KEYFILE = '********************'
  228. EMAIL_SUBJECT_PREFIX = '[Django] '
  229. EMAIL_TIMEOUT = None
  230. EMAIL_USE_LOCALTIME = False
  231. EMAIL_USE_SSL = False
  232. EMAIL_USE_TLS = False
  233. EMPLOYER_PORTAL_URL = 'http://localhost:8000'
  234. FILE_CHARSET = 'utf-8'
  235. FILE_UPLOAD_DIRECTORY_PERMISSIONS = None
  236. FILE_UPLOAD_HANDLERS = ['django.core.files.uploadhandler.MemoryFileUploadHandler', 'django.core.files.uploadhandler.TemporaryFileUploadHandler']
  237. FILE_UPLOAD_MAX_MEMORY_SIZE = 2621440
  238. FILE_UPLOAD_PERMISSIONS = None
  239. FILE_UPLOAD_TEMP_DIR = None
  240. FIRST_DAY_OF_WEEK = 0
  241. FIXTURE_DIRS = []
  242. FORCE_SCRIPT_NAME = None
  243. FORMAT_MODULE_PATH = None
  244. FORM_RENDERER = 'django.forms.renderers.DjangoTemplates'
  245. IGNORABLE_404_URLS = []
  246. INSTALLED_APPS = ['djadmin', 'advanced_filters', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.sites', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'celery', 'rest_framework', 'rest_framework_jwt', 'django_filters', 'corsheaders', 'drf_yasg', 'anymail', 'allauth', 'allauth.account', 'allauth.socialaccount', 'allauth.socialaccount.providers.google', 'allauth.socialaccount.providers.twitter', 'allauth.socialaccount.providers.facebook', 'allauth.socialaccount.providers.instagram', 'allauth.socialaccount.providers.linkedin_oauth2', 'career_support_models', 'cs_administrator.apps.CsAdministratorConfig', 'cs_advertisement.apps.CsAdvertisementConfig', 'cs_authentication.apps.CsAuthenticationConfig', 'cs_billing.apps.CsBillingConfig', 'cs_core.apps.CsCoreConfig', 'cs_candidate.apps.CsCandidateConfig', 'cs_employer.apps.CsEmployerConfig', 'cs_faq.apps.CsFAQConfig', 'cs_history.apps.CsHistoryConfig', 'cs_interview.apps.CsInterviewConfig', 'cs_job.apps.CsJobConfig', 'cs_log.apps.CsLogConfig', 'cs_message.apps.CsMessageConfig', 'cs_news.apps.CsNewsConfig', 'cs_organization.apps.CsOrganizationConfig', 'cs_profile.apps.CsProfileConfig', 'cs_region.apps.CsRegionConfig', 'cs_requirement.apps.CsRequirementConfig', 'cs_school.apps.CsSchoolConfig', 'cs_social.apps.CsSocialConfig', 'cs_transaction.apps.CsTransactionConfig', 'cs_user.apps.CsUserConfig', 'dbbackup']
  247. INTERNAL_IPS = []
  248. JWT_AUTH = {'JWT_PUBLIC_KEY': '********************', 'JWT_PRIVATE_KEY': '********************', 'JWT_ALGORITHM': 'HS512', 'JWT_PAYLOAD_GET_USERNAME_HANDLER': 'cs_core.handlers.jwt_get_username_from_payload_handler', 'JWT_RESPONSE_PAYLOAD_HANDLER': 'cs_core.handlers.jwt_response_payload_handler', 'JWT_VERIFY': True, 'JWT_VERIFY_EXPIRATION': True, 'JWT_EXPIRATION_DELTA': datetime.timedelta(seconds=18000), 'JWT_REFRESH_EXPIRATION_DELTA': datetime.timedelta(days=7), 'JWT_AUDIENCE': None, 'JWT_ISSUER': None, 'JWT_LEEWAY': 10, 'JWT_ALLOW_REFRESH': True, 'JWT_AUTH_HEADER_PREFIX': 'JWT'}
  249. LANGUAGES = [('af', 'Afrikaans'), ('ar', 'Arabic'), ('ast', 'Asturian'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('dsb', 'Lower Sorbian'), ('el', 'Greek'), ('en', 'English'), ('en-au', 'Australian English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-co', 'Colombian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy', 'Frisian'), ('ga', 'Irish'), ('gd', 'Scottish Gaelic'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hsb', 'Upper Sorbian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('io', 'Ido'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kab', 'Kabyle'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('mr', 'Marathi'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmål'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-hans', 'Simplified Chinese'), ('zh-hant', 'Traditional Chinese')]
  250. LANGUAGES_BIDI = ['he', 'ar', 'fa', 'ur']
  251. LANGUAGE_CODE = 'en-us'
  252. LANGUAGE_COOKIE_AGE = None
  253. LANGUAGE_COOKIE_DOMAIN = None
  254. LANGUAGE_COOKIE_NAME = 'django_language'
  255. LANGUAGE_COOKIE_PATH = '/'
  256. LOCALE_PATHS = []
  257. LOGGING = {}
  258. LOGGING_CONFIG = 'logging.config.dictConfig'
  259. LOGIN_REDIRECT_URL = '/accounts/profile/'
  260. LOGIN_URL = '/accounts/login/'
  261. LOGOUT_REDIRECT_URL = None
  262. MANAGERS = []
  263. MEDIA_ROOT = '/root/cs_api/root_media'
  264. MEDIA_URL = '/media/'
  265. MESSAGE_STORAGE = 'django.contrib.messages.storage.fallback.FallbackStorage'
  266. MIDDLEWARE = ['django.middleware.security.SecurityMiddleware', 'corsheaders.middleware.CorsMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'djadmin.middleware.DJMiddleware']
  267. MIGRATION_MODULES = {}
  268. MONTH_DAY_FORMAT = 'F j'
  269. NUMBER_GROUPING = 0
  270. PASSWORD_HASHERS = '********************'
  271. PASSWORD_RESET_TIMEOUT_DAYS = '********************'
  272. PREPEND_WWW = False
  273. REST_FRAMEWORK = {'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAuthenticated',), 'DEFAULT_AUTHENTICATION_CLASSES': ('rest_framework_jwt.authentication.JSONWebTokenAuthentication',), 'DEFAULT_FILTER_BACKENDS': ('django_filters.rest_framework.DjangoFilterBackend', 'rest_framework.filters.SearchFilter'), 'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination', 'PAGE_SIZE': 10, 'DATETIME_FORMAT': '%Y-%m-%d %H:%M:%S', 'DEFAULT_VERSIONING_CLASS': 'rest_framework.versioning.URLPathVersioning', 'TEST_REQUEST_DEFAULT_FORMAT': 'json'}
  274. ROOT_URLCONF = 'career_support_api.urls'
  275. SCHOOL_PORTAL_URL = 'http://localhost:8000'
  276. SECRET_KEY = '********************'
  277. SECURE_BROWSER_XSS_FILTER = False
  278. SECURE_CONTENT_TYPE_NOSNIFF = False
  279. SECURE_HSTS_INCLUDE_SUBDOMAINS = False
  280. SECURE_HSTS_PRELOAD = False
  281. SECURE_HSTS_SECONDS = 0
  282. SECURE_PROXY_SSL_HEADER = None
  283. SECURE_REDIRECT_EXEMPT = []
  284. SECURE_SSL_HOST = None
  285. SECURE_SSL_REDIRECT = False
  286. SERVER_EMAIL = 'root@localhost'
  287. SESSION_CACHE_ALIAS = 'default'
  288. SESSION_COOKIE_AGE = 1209600
  289. SESSION_COOKIE_DOMAIN = None
  290. SESSION_COOKIE_HTTPONLY = True
  291. SESSION_COOKIE_NAME = 'sessionid'
  292. SESSION_COOKIE_PATH = '/'
  293. SESSION_COOKIE_SAMESITE = 'Lax'
  294. SESSION_COOKIE_SECURE = False
  295. SESSION_ENGINE = 'django.contrib.sessions.backends.db'
  296. SESSION_EXPIRE_AT_BROWSER_CLOSE = False
  297. SESSION_FILE_PATH = None
  298. SESSION_SAVE_EVERY_REQUEST = False
  299. SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'
  300. SETTINGS_MODULE = 'career_support_api.settings'
  301. SHORT_DATETIME_FORMAT = 'm/d/Y P'
  302. SHORT_DATE_FORMAT = 'm/d/Y'
  303. SIGNING_BACKEND = 'django.core.signing.TimestampSigner'
  304. SILENCED_SYSTEM_CHECKS = []
  305. SITE_ID = 1
  306. SITE_PREFIX = 'http://192.168.5.171:9880'
  307. SOCIALACCOUNT_PROVIDERS = {'linkedin': {'SCOPE': ['r_basicprofile', 'r_emailaddress'], 'PROFILE_FIELDS': ['id', 'first-name', 'last-name', 'email-address', 'picture-url', 'public-profile-url']}}
  308. STATICFILES_DIRS = "('/root/cs_api/static',)"
  309. STATICFILES_FINDERS = ['django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder']
  310. STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
  311. STATIC_ROOT = '/root/cs_api/root_static'
  312. STATIC_URL = '/static/'
  313. SWAGGER_SETTINGS = {'SECURITY_DEFINITIONS': {'JWT': {'type': 'apiKey', 'name': 'Authorization', 'in': 'header'}}, 'USE_SESSION_AUTH': False}
  314. TEMPLATES = [{'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': ['/root/cs_api/templates'], 'APP_DIRS': True, 'OPTIONS': {'context_processors': ['django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages']}}]
  315. TEST_NON_SERIALIZED_APPS = []
  316. TEST_RUNNER = 'django.test.runner.DiscoverRunner'
  317. THOUSAND_SEPARATOR = ','
  318. THUMBNAIL_FORCE_OVERWRITE = True
  319. TIME_FORMAT = 'P'
  320. TIME_INPUT_FORMATS = ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M']
  321. TIME_ZONE = 'Asia/Jakarta'
  322. USE_I18N = True
  323. USE_L10N = True
  324. USE_THOUSAND_SEPARATOR = False
  325. USE_TZ = True
  326. USE_X_FORWARDED_HOST = False
  327. USE_X_FORWARDED_PORT = False
  328. WSGI_APPLICATION = 'career_support_api.wsgi.application'
  329. X_FRAME_OPTIONS = 'SAMEORIGIN'
  330. YEAR_MONTH_FORMAT = 'F Y'
  331.  
  332.  
  333. You're seeing this error because you have DEBUG = True in your
  334. Django settings file. Change that to False, and Django will
  335. display a standard page generated by the handler for this status code.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement