Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
chore(ui): use nginx-unprivileged base image for the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
zsoltkacsandi committed Aug 9, 2024
1 parent e8dd4d0 commit abcc061
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion installation/aws/VmClarity.cfn
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ Resources:

http {
upstream ui {
server ui:80;
server ui:8080;
}

upstream uibackend {
Expand Down
2 changes: 1 addition & 1 deletion installation/azure/vmclarity-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ events {
http {
upstream ui {
server ui:80;
server ui:8080;
}
upstream uibackend {
Expand Down
2 changes: 1 addition & 1 deletion installation/docker/gateway.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
upstream ui {
server ui:80;
server ui:8080;
}

upstream uibackend {
Expand Down
2 changes: 1 addition & 1 deletion installation/gcp/dm/components/vmclarity-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ events {{
http {{
upstream ui {{
server ui:80;
server ui:8080;
}}
upstream uibackend {{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data:
http {
upstream ui {
server {{ printf "%s" (include "vmclarity.ui.name" .) }}:80;
server {{ printf "%s" (include "vmclarity.ui.name" .) }}:8080;
}
upstream uibackend {
Expand Down
4 changes: 2 additions & 2 deletions ui/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 80;
listen [::]:80;
listen 8080;
listen [::]:8080;
server_name localhost;

#access_log /var/log/nginx/host.access.log main;
Expand Down

0 comments on commit abcc061

Please sign in to comment.