45 lines
948 B
Python
45 lines
948 B
Python
from .settings_default import *
|
|
REST_FRAMEWORK = {
|
|
'DEFAULT_AUTHENTICATION_CLASSES': (
|
|
'rest_framework.authentication.BasicAuthentication',
|
|
'rest_framework.authentication.SessionAuthentication',
|
|
),
|
|
}
|
|
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
CORS_ALLOW_CREDENTIALS = True # 允许携带cookie
|
|
# CORS_ALLOW_ALL_ORIGINS = True # If this is used then `CORS_ALLOWED_ORIGINS` will not have any effect
|
|
CORS_ALLOWED_ORIGINS = [
|
|
'http://localhost:8080',
|
|
'http://127.0.0.1:8080',
|
|
'http://192.168.1.101:8080'
|
|
]
|
|
|
|
CORS_ALLOW_METHODS = [
|
|
"DELETE",
|
|
"GET",
|
|
"OPTIONS",
|
|
"PATCH",
|
|
"POST",
|
|
"PUT",
|
|
]
|
|
|
|
CORS_ALLOW_HEADERS = [
|
|
"accept",
|
|
"accept-encoding",
|
|
"authorization",
|
|
"content-type",
|
|
"dnt",
|
|
"origin",
|
|
"user-agent",
|
|
"x-csrftoken",
|
|
"x-requested-with",
|
|
]
|
|
|
|
CORS_ALLOW_HEADERS = ('*')
|
|
|
|
PROJECT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
STATIC_ROOT = os.path.join(PROJECT_DIR, 'static')
|