Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions charts/hedera-network/charts/hedera-explorer/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OS
.DS_Store

# VCS
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/

# Backup
*.swp
*.bak
*.tmp
*~

# IDE
.project
.idea/
.vscode/
*.tmproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ data:

{{- range $path, $backend := .Values.proxyPass }}
location {{ $path }} {
proxy_pass {{ $backend }};
proxy_pass {{ tpl $backend $ }};
}
{{- end }}

Expand Down
7 changes: 5 additions & 2 deletions charts/hedera-network/charts/hedera-explorer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,13 @@ volumes:
configMap:
name: '{{ include "hedera-explorer.fullname" . }}-config'

# Add custom reverse proxy configuration
# Add custom reverse proxy configuration.
# It is a key-value map where key is the path and value being a URL.
# Primary use case is to allow access to mirror node api via hedera explorer url
# Note that templating is allowed in the values
# Example:
# /api: "http://{{ .Release.Name }}-rest"
proxyPass: {}
# /api: http://fst-rest

config: |
[
Expand Down