Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MetaGer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
open-source
MetaGer
Commits
a8bf0c4d
Commit
a8bf0c4d
authored
2 years ago
by
Dominik Hebeler
Browse files
Options
Downloads
Patches
Plain Diff
prepared keyserver route
parent
777c0cd8
No related branches found
Branches containing commit
No related tags found
1 merge request
!2031
Development
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/nginx/configuration/nginx-default-dev.conf
+13
-0
13 additions, 0 deletions
build/nginx/configuration/nginx-default-dev.conf
docker-compose.yml
+1
-0
1 addition, 0 deletions
docker-compose.yml
with
14 additions
and
0 deletions
build/nginx/configuration/nginx-default-dev.conf
+
13
−
0
View file @
a8bf0c4d
...
...
@@ -14,6 +14,19 @@ server {
return
200
"healthy\n"
;
}
location
~
"^(/.*)?/keys"
{
access_log
off
;
proxy_set_header
Host
$
host
;
proxy_set_header
X
-
Forwarded
-
For
$
proxy_add_x_forwarded_for
;
proxy_set_header
X
-
Real
-
IP
$
remote_addr
;
proxy_set_header
X
-
Forwarded
-
Proto
$
scheme
;
proxy_set_header
X
-
Forwarded
-
Host
$
host
;
proxy_set_header
X
-
Forwarded
-
Port
8080
;
proxy_buffer_size
256
k
;
proxy_buffers
32
256
k
;
proxy_pass
http
://
express
:
3000
;
}
location
/ {
try_files
$
uri
$
uri
/ /
index
.
php
?$
query_string
;
add_header
"Content-Security-Policy"
$
csp
;
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
1
−
0
View file @
a8bf0c4d
...
...
@@ -108,6 +108,7 @@ services:
test
:
"
redis-cli
ping"
networks
:
metager
:
name
:
metager_net
ipam
:
driver
:
default
config
:
...
...
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