Skip to content

Commit 9aba675

Browse files
gustavosbarretoluannmoreira
authored andcommitted
feat(ui, gateway): integration of Vite multi-app
In this commit, the admin dashboard has been adapted for enterprise instances in the project's original UI repository. - Updated vite.config to support building two projects. - Modified vitest.config to ensure tests for both projects use the same configuration. - Added the entire source code of the instance administration dashboard to the project. - Updated the gateway configuration to support both UI instances simultaneously.
1 parent a03f5f5 commit 9aba675

File tree

221 files changed

+38327
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+38327
-27
lines changed

gateway/nginx/conf.d/shellhub.conf

+4-23
Original file line numberDiff line numberDiff line change
@@ -300,31 +300,12 @@ server {
300300
}
301301
{{- end }}
302302

303-
{{ if $cfg.EnableEnterprise -}}
304-
location /admin/dashboard/ {
305-
{{ set_upstream "dashboard" 8080 }}
306-
307-
add_header Cache-Control "no-cache, no-store";
308-
add_header Pragma "no-cache";
309-
310-
{{ if ne $cfg.Env "development" -}}
311-
rewrite ^/admin/dashboard/(.*)$ /$1 break;
312-
{{- end }}
313-
314-
proxy_pass http://upstream_router;
315-
proxy_set_header Connection 'upgrade';
316-
proxy_set_header Host $host;
317-
proxy_set_header Upgrade $http_upgrade;
318-
proxy_http_version 1.1;
319-
proxy_cache_bypass $http_upgrade;
320-
proxy_redirect off;
321-
}
322-
323-
location ~ ^/admin/?$ {
324-
rewrite ^/admin/?$ /admin/dashboard permanent;
303+
location ~ ^/admin$ {
304+
rewrite ^/admin/?$ /admin/ permanent;
325305
}
326306

327-
location /admin {
307+
{{ if $cfg.EnableEnterprise -}}
308+
location /admin/api {
328309
{{ set_upstream "admin-api" 8080 }}
329310

330311
error_page 500 =401;

ui/admin/index.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<link rel="icon" href="public/favicon.ico" />
7+
<link href="//cdn.jsdelivr.net/npm/[email protected]/assets/font-logos.css" rel="stylesheet">
8+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
9+
<meta name="viewport" content="width=device-width">
10+
<meta
11+
name="description"
12+
content="ShellHub is a modern SSH server for remotely accessing Linux devices via the command line,
13+
ShellHub Admin controll and observe the operations executed in the ShellHub instance.">
14+
<title>Admin - Shellhub</title>
15+
</head>
16+
17+
<body>
18+
<div id="app"></div>
19+
<script type="module" src="/admin/src/main.ts"></script>
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)