mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-13 18:04:20 -05:00
968cdc1a38
* cli: move internal packages Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: fix buildfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix exclude dir Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: move back libraries that will not be used by TF provider Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
62 lines
2.2 KiB
Smarty
62 lines
2.2 KiB
Smarty
{{- define "hubble-ui.nginx.conf" }}
|
|
server {
|
|
listen 8081;
|
|
{{- if .Values.hubble.ui.frontend.server.ipv6.enabled }}
|
|
listen [::]:8081;
|
|
{{- end }}
|
|
server_name localhost;
|
|
root /app;
|
|
index index.html;
|
|
client_max_body_size 1G;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
# CORS
|
|
add_header Access-Control-Allow-Methods "GET, POST, PUT, HEAD, DELETE, OPTIONS";
|
|
add_header Access-Control-Allow-Origin *;
|
|
add_header Access-Control-Max-Age 1728000;
|
|
add_header Access-Control-Expose-Headers content-length,grpc-status,grpc-message;
|
|
add_header Access-Control-Allow-Headers range,keep-alive,user-agent,cache-control,content-type,content-transfer-encoding,x-accept-content-transfer-encoding,x-accept-response-streaming,x-user-agent,x-grpc-web,grpc-timeout;
|
|
if ($request_method = OPTIONS) {
|
|
return 204;
|
|
}
|
|
# /CORS
|
|
|
|
location {{ .Values.hubble.ui.baseUrl }}api {
|
|
{{- if not (eq .Values.hubble.ui.baseUrl "/") }}
|
|
rewrite ^{{ (trimSuffix "/" .Values.hubble.ui.baseUrl) }}(/.*)$ $1 break;
|
|
{{- end }}
|
|
proxy_http_version 1.1;
|
|
proxy_pass_request_headers on;
|
|
proxy_hide_header Access-Control-Allow-Origin;
|
|
{{- if eq .Values.hubble.ui.baseUrl "/" }}
|
|
proxy_pass http://127.0.0.1:8090;
|
|
{{- else }}
|
|
proxy_pass http://127.0.0.1:8090/;
|
|
{{- end }}
|
|
}
|
|
|
|
{{- if not (eq .Values.hubble.ui.baseUrl "/") }}
|
|
sub_filter_once on;
|
|
sub_filter '<base href="/"/>' '<base href="{{ .Values.hubble.ui.baseUrl }}"/>';
|
|
{{- end }}
|
|
location {{ .Values.hubble.ui.baseUrl }} {
|
|
{{- if not (eq .Values.hubble.ui.baseUrl "/") }}
|
|
rewrite ^{{ (trimSuffix "/" .Values.hubble.ui.baseUrl) }}(/.*)$ $1 break;
|
|
{{- end }}
|
|
# double `/index.html` is required here
|
|
try_files $uri $uri/ /index.html /index.html;
|
|
}
|
|
|
|
# Liveness probe
|
|
location /healthz {
|
|
access_log off;
|
|
add_header Content-Type text/plain;
|
|
return 200 'ok';
|
|
}
|
|
}
|
|
}
|
|
{{- end }}
|