Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend_api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package registry
Container registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
videoag
backend_api
Merge requests
!3
Rollout to production
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Rollout to production
master
into
live_production
Overview
0
Commits
5
Pipelines
1
Changes
14
Merged
Simon Künzel
requested to merge
master
into
live_production
1 year ago
Overview
0
Commits
5
Pipelines
1
Changes
14
Expand
0
0
Merge request reports
Compare
live_production
live_production (base)
and
latest version
latest version
b2d90f14
5 commits,
1 year ago
14 files
+
85
−
118
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
config/api_example_config.py
+
11
−
0
Options
@@ -8,6 +8,17 @@ API_SERVER_NAME = "dev"
# Must include the last /
FILE_PATH_PREFIX
=
"
https://video.fsmpi.rwth-aachen.de/files/
"
# Used for all cookies
# While the frontend and api are on different subdomains, that still counts as 'same-site'
COOKIES_SAMESITE
=
"
strict
"
COOKIES_SECURE
=
False
COOKIES_DOMAIN
=
""
# These are flask's options for the session cookie
SESSION_COOKIE_SAMESITE
=
COOKIES_SAMESITE
SESSION_COOKIE_SECURE
=
COOKIES_SECURE
SESSION_COOKIE_DOMAIN
=
COOKIES_DOMAIN
# Used by flask to sign the cookies
SECRET_KEY
=
"
something random
"
Loading