Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
leafwriter-configuration-files
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LEAF-Writer-X
dependencies
leafwriter-configuration-files
Commits
8dfb1028
Commit
8dfb1028
authored
1 year ago
by
Jacob Benz
Browse files
Options
Downloads
Patches
Plain Diff
Sample nginx config files
parent
221ee046
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
authapi
+15
-0
15 additions, 0 deletions
authapi
keycloak
+18
-0
18 additions, 0 deletions
keycloak
leaf
+17
-0
17 additions, 0 deletions
leaf
nssi
+20
-0
20 additions, 0 deletions
nssi
with
70 additions
and
0 deletions
authapi
0 → 100644
+
15
−
0
View file @
8dfb1028
server {
server_name authapi.test.lca.users.h-da.cloud;
listen 80;
listen [::]:80;
location / {
proxy_pass http://localhost:5000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
This diff is collapsed.
Click to expand it.
keycloak
0 → 100644
+
18
−
0
View file @
8dfb1028
server {
server_name keycloak.test.lca.users.h-da.cloud;
listen 80;
listen [::]:80;
location / {
proxy_pass http://localhost:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Proto https;
}
}
This diff is collapsed.
Click to expand it.
leaf
0 → 100644
+
17
−
0
View file @
8dfb1028
server {
server_name leaf.test.lca.users.h-da.cloud;
listen 80;
listen [::]:80;
location / {
proxy_pass http://localhost:3000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
This diff is collapsed.
Click to expand it.
nssi
0 → 100644
+
20
−
0
View file @
8dfb1028
server {
server_name nssi.test.lca.users.h-da.cloud;
listen 80;
listen [::]:80;
location / {
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
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