18 lines
419 B
Python
18 lines
419 B
Python
CORS_ALLOWED_ORIGINS = [
|
|
"http://localhost:8081",
|
|
"http://localhost:8082",
|
|
"http://127.0.0.1:8081",
|
|
"http://127.0.0.1:8082",
|
|
'https://uyqurfront.felixits.uz',
|
|
"https://ibapp.uz",
|
|
"https://www.ibapp.uz",
|
|
'https://test.ibapp.uz',
|
|
]
|
|
|
|
CSRF_TRUSTED_ORIGINS = [
|
|
'http://localhost:8001',
|
|
'http://127.0.0.1:8001',
|
|
'https://test-uyqur.felixits.uz',
|
|
"https://test-api.ibapp.uz",
|
|
]
|