Skip to content

Commit

Permalink
Merge pull request #211 from planetf1/issue480
Browse files Browse the repository at this point in the history
  • Loading branch information
planetf1 authored Mar 22, 2023
2 parents ab25aca + e9b5b52 commit 2ee9d2c
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 270 deletions.
2 changes: 1 addition & 1 deletion charts/odpi-egeria-lab/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: odpi-egeria-lab
description: Egeria lab environment
apiVersion: v2
version: 4.0.0-prerelease.8
version: 4.0.0-prerelease.9
appVersion: "4.0"
icon: https://raw.githubusercontent.com/odpi/egeria/99016e77167fa30dcfade809b061358a92a59973/assets/img/egeria.png
keywords:
Expand Down
44 changes: 0 additions & 44 deletions charts/odpi-egeria-lab/etc/default.conf.template

This file was deleted.

17 changes: 14 additions & 3 deletions charts/odpi-egeria-lab/etc/staticui.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,24 @@
# Copyright Contributors to the Egeria project

server {
listen 8080;
server_name _;
listen 8443 ssl default_server;
server_name _;
ssl_certificate /etc/nginx/ssl/tls.crt;
ssl_certificate_key /etc/nginx/ssl/tls.key;
ssl_password_file /etc/nginx/pass/pass.txt;

root /var/www/;
index index.html;

# Force all paths to load either itself (js files) or go through index.html.
location /api {
proxy_pass ${UI_API};
proxy_set_header Host $http_host;
proxy_ssl_verify off;
proxy_ssl_session_reuse on;
proxy_ssl_server_name on;
}

# Force all other paths to load either itself (js files) or go through index.html.
location / {
try_files $uri /index.html;
}
Expand Down
214 changes: 0 additions & 214 deletions charts/odpi-egeria-lab/templates/egeria-nginx.yaml

This file was deleted.

Loading

0 comments on commit 2ee9d2c

Please sign in to comment.