Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
balance_tracker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
hive
balance_tracker
Merge requests
!124
Couldn't fetch the linked file.
set GET_DEPTH to 1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
set GET_DEPTH to 1
git-depth
into
develop
Overview
0
Commits
1
Pipelines
3
Changes
2
Merged
Dan Notestein
requested to merge
git-depth
into
develop
3 months ago
Overview
0
Commits
1
Pipelines
3
Changes
6
Expand
0
0
Merge request reports
Compare
version 2
version 2
cf763af7
3 months ago
version 1
1ca54b43
3 months ago
develop (base)
and
latest version
latest version
7fc17f78
1 commit,
3 months ago
version 2
cf763af7
1 commit,
3 months ago
version 1
1ca54b43
1 commit,
3 months ago
Show latest version
6 files
+
32
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
docker/balance_tracker_nginx.conf
→
docker/balance_tracker_nginx.conf
.template
+
11
−
1
Options
@@ -16,7 +16,10 @@ http {
location / {
include rewrite_rules.conf;
rewrite_log
on
;
# ${REWRITE_LOG} will be replaced by the docker entrypoint script.
# Set REWRITE_LOG=on in the environment to enable rewrite logging,
# otherwise it will remain disabled
${REWRITE_LOG}
proxy_pass http://balance-tracker-postgrest:3000; # my PostREST is here!
@@ -29,4 +32,11 @@ http {
proxy_http_version 1.1;
}
}
server {
listen 0.0.0.0:81;
location /health {
return 204;
}
}
}
Loading