* chore(frontend): build dockerimage for frontend * chore(helm): remove frontend files from minio. Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(helm): Adding frontend chart Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(helm): remove grafana ingress from community charts Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(helm): removing minio-frontend ingress Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * fix(helm): ingress rewrite Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(build): give priority to env image tag Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(frontend): adding nginx.conf for frontend container Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * chore(helm): disable minio if not used Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
9 lines
170 B
Nginx Configuration File
9 lines
170 B
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
root /var/www/openreplay;
|
|
index index.html;
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|