Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
docker-iot-v3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
deploy
docker-iot-v3
Commits
a62f3aa8
Commit
a62f3aa8
authored
Nov 28, 2022
by
吴文龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
0c90994d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
haproxy.cfg
haproxy/config/haproxy.cfg
+9
-0
No files found.
haproxy/config/haproxy.cfg
View file @
a62f3aa8
...
...
@@ -71,6 +71,7 @@ frontend http-in
acl letsencrypt_http_acl path_beg /.well-known/acme-challenge/
acl tb_api_acl path_beg /api/ /swagger /webjars /v2/ /v3/ /static/rulenode/ /oauth2/ /login/oauth2/ /static/widgets/
acl iot-interface_acl path_beg /iot/
acl iot-dbapi_acl path_beg /api/dbapi/
redirect scheme https if !letsencrypt_http_acl !transport_http_acl { env(FORCE_HTTPS_REDIRECT) -m str true }
...
...
@@ -78,6 +79,7 @@ frontend http-in
use_backend tb-http-backend if transport_http_acl
use_backend tb-api-backend if tb_api_acl
use_backend iot-interface-backend if iot-interface_acl
use_backend iot-dbapi-backend if iot-dbapi_acl
default_backend tb-web-backend
...
...
@@ -129,3 +131,10 @@ backend iot-interface-backend
server iot-interface iot-interface:8080 check inter 5s resolvers docker_resolver resolve-prefer ipv4
http-request set-header X-Forwarded-Port %[dst_port]
backend iot-dbapi-backend
balance leastconn
option tcp-check
option log-health-checks
server iot-dbapi iot-dbapi:8520 check inter 5s resolvers docker_resolver resolve-prefer ipv4
http-request set-header X-Forwarded-Port %[dst_port]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment