Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
94e83373
Commit
94e83373
authored
2 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Plain Diff
Merge branch '772-mention-csrf-trusted-origin-configuration-in-handbook' into 'master'
Automatically allow CORS from ALLOWED_HOSTS and dev servers Closes
#772
See merge request
!1142
parents
f379a367
f485677b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1142
Automatically allow CORS from ALLOWED_HOSTS and dev servers
Pipeline
#108708
failed
2 years ago
Stage: prepare
Stage: test
Stage: build
Stage: publish
Stage: docker
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
aleksis/core/settings.py
+13
-3
13 additions, 3 deletions
aleksis/core/settings.py
aleksis/core/util/frontend_helpers.py
+1
-0
1 addition, 0 deletions
aleksis/core/util/frontend_helpers.py
aleksis/core/vite.config.js
+2
-1
2 additions, 1 deletion
aleksis/core/vite.config.js
with
16 additions
and
4 deletions
aleksis/core/settings.py
+
13
−
3
View file @
94e83373
...
...
@@ -63,12 +63,23 @@ UWSGI = {
UWSGI_SERVE_STATIC
=
True
UWSGI_SERVE_MEDIA
=
False
DEV_SERVER_PORT
=
8000
DJANGO_VITE_DEV_SERVER_PORT
=
DEV_SERVER_PORT
+
1
ALLOWED_HOSTS
=
_settings
.
get
(
"
http.allowed_hosts
"
,
[
getfqdn
(),
"
localhost
"
,
"
127.0.0.1
"
,
"
[::1]
"
])
BASE_URL
=
_settings
.
get
(
"
http.base_url
"
,
"
http://localhost:
8000
"
if
DEBUG
else
f
"
https:
//
{
ALLOWED_HOSTS
[
0
]
}
"
"
http.base_url
"
,
f
"
http://localhost:
{
DEV_SERVER_PORT
}
"
if
DEBUG
else
f
"
//
{
ALLOWED_HOSTS
[
0
]
}
"
)
CSRF_TRUSTED_ORIGINS
=
_settings
.
get
(
"
http.trusted_origins
"
,
[])
def
generate_trusted_origins
():
origins
=
[]
origins
+=
[
f
"
http://
{
host
}
"
for
host
in
ALLOWED_HOSTS
]
origins
+=
[
f
"
https://
{
host
}
"
for
host
in
ALLOWED_HOSTS
]
if
DEBUG
:
origins
+=
[
f
"
http://
{
host
}
:
{
DEV_SERVER_PORT
}
"
for
host
in
ALLOWED_HOSTS
]
origins
+=
[
f
"
http://
{
host
}
:
{
DJANGO_VITE_DEV_SERVER_PORT
}
"
for
host
in
ALLOWED_HOSTS
]
return
origins
CSRF_TRUSTED_ORIGINS
=
_settings
.
get
(
"
http.trusted_origins
"
,
generate_trusted_origins
())
# Application definition
INSTALLED_APPS
=
[
...
...
@@ -601,7 +612,6 @@ JS_ROOT = _settings.get("js_assets.root", os.path.join(NODE_MODULES_ROOT, "node_
DJANGO_VITE_ASSETS_PATH
=
os
.
path
.
join
(
NODE_MODULES_ROOT
,
"
vite_bundles
"
)
DJANGO_VITE_DEV_MODE
=
DEBUG
DJANGO_VITE_DEV_SERVER_PORT
=
5173
STATICFILES_DIRS
=
(
DJANGO_VITE_ASSETS_PATH
,
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/util/frontend_helpers.py
+
1
−
0
View file @
94e83373
...
...
@@ -25,6 +25,7 @@ def get_apps_with_frontend():
def
write_vite_values
(
out_path
:
str
)
->
dict
[
str
,
Any
]:
vite_values
=
{
"
static_url
"
:
settings
.
STATIC_URL
,
"
serverPort
"
:
settings
.
DJANGO_VITE_DEV_SERVER_PORT
,
}
# Write rollup entrypoints for all apps
vite_values
[
"
appDetails
"
]
=
{}
...
...
This diff is collapsed.
Click to expand it.
aleksis/core/vite.config.js
+
2
−
1
View file @
94e83373
...
...
@@ -139,7 +139,8 @@ export default defineConfig({
},
server
:
{
strictPort
:
true
,
origin
:
"
http://localhost:5173
"
,
port
:
django_values
.
serverPort
,
origin
:
`http://localhost:
${
django_values
.
serverPort
}
`
,
watch
:
{
ignored
:
[
"
**/*.py
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment