Skip to content

Commit

Permalink
fixup! fixup! fixup! Merge branch 'main' of https://github.com/redhat…
Browse files Browse the repository at this point in the history
  • Loading branch information
aleixhub committed May 6, 2024
1 parent 4628543 commit bbc7747
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catalog/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ui:
status:
name: # default use chart name + '-status'
image:
tag: v0.0.5
tag: v0.0.6
repository: quay.io/redhat-gpte/babylon-catalog-status
pullPolicy: IfNotPresent
replicaCount: 1
Expand Down
22 changes: 22 additions & 0 deletions catalog/status/nginx-default-cfg/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,27 @@ server {
listen 8443 ssl;
ssl_certificate_key /etc/tls/private/tls.key;
ssl_certificate /etc/tls/private/tls.crt;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers HIGH:!kEDH:!ADH:!MD5:@STRENGTH;
ssl_session_cache shared:TLSSSL:16m;
ssl_session_timeout 10m;

location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto "https";
proxy_read_timeout 90;
root /opt/app-root/src/;
index index.html;
add_header Cache-Control "max-age=0, no-cache, no-store, must-revalidate";
add_header Pragma "no-cache";
add_header Last-Modified $date_gmt;
etag off;
if_modified_since off;
expires off;
try_files $uri $uri/ /index.html;
}

}
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ catalog:
memory: "256Mi"
status:
image:
tag: v0.0.5
tag: v0.0.6
repository: quay.io/redhat-gpte/babylon-catalog-status
pullPolicy: IfNotPresent
replicaCount: 1
Expand Down

0 comments on commit bbc7747

Please sign in to comment.