mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
remove unnecessary port specification in docker-compos and app-servers chart
This commit is contained in:
parent
00601b49c1
commit
d3c29aaa33
2 changed files with 3 additions and 3 deletions
|
@ -168,7 +168,7 @@ services:
|
|||
ports:
|
||||
- 19999:19999
|
||||
environment:
|
||||
- MONITOR_URL=https://haproxy:443/monitor
|
||||
- MONITOR_URL=https://haproxy/monitor
|
||||
volumes:
|
||||
- ./docker/netdata/netdatalib:/var/lib/netdata
|
||||
- ./docker/netdata/netdatacache:/var/cache/netdata
|
||||
|
|
|
@ -4,10 +4,10 @@ import os
|
|||
import requests
|
||||
|
||||
MONITOR_URL = os.getenv("MONITOR_URL")
|
||||
if MONITOR_URL == "https://haproxy:443/monitor":
|
||||
if MONITOR_URL == "https://haproxy/monitor":
|
||||
verify = False
|
||||
else:
|
||||
verify = False
|
||||
verify = True
|
||||
|
||||
|
||||
endpoints = {
|
||||
|
|
Loading…
Add table
Reference in a new issue