mirror of
git://f0xx.org/android_cast
synced 2026-07-29 04:18:09 +03:00
Fix project hub 502: directory alias and single index.html.
Alias-to-file broke nginx static serving; inline hub CSS and relative links. One file to copy. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,12 +1,11 @@
|
|||||||
# Project hub (`/app/androidcast_project/`)
|
# Project hub
|
||||||
|
|
||||||
Two static files. Copy from git to the VM:
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp examples/app_hub/index.html /var/www/localhost/htdocs/apps/app/androidcast_project/
|
cp examples/app_hub/index.html /var/www/localhost/htdocs/apps/app/androidcast_project/
|
||||||
cp examples/app_hub/hub.css /var/www/localhost/htdocs/apps/app/androidcast_project/
|
|
||||||
```
|
```
|
||||||
|
|
||||||
One-time: stop nginx redirecting `/app/androidcast_project/` to crashes — use the two `location =` blocks in `examples/crash_reporter/backend/nginx.apps.conf.fragment`, then `nginx -t && reload`.
|
Nginx (`nginx.apps.conf.fragment`): serve that directory — **not** `alias …/index.html` (that causes 502).
|
||||||
|
|
||||||
That's it.
|
```bash
|
||||||
|
nginx -t && rc-service nginx reload
|
||||||
|
```
|
||||||
|
|||||||
@@ -1,155 +0,0 @@
|
|||||||
/* Android Cast project hub — shares crash console tokens via app.css */
|
|
||||||
|
|
||||||
.hub-page {
|
|
||||||
min-height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-shell {
|
|
||||||
flex: 1;
|
|
||||||
min-height: calc(100vh - 40px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-main {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
min-height: calc(100vh - 40px);
|
|
||||||
padding: 32px 28px 48px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-header {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 36px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-title {
|
|
||||||
margin: 0 0 8px;
|
|
||||||
font-size: 1.75rem;
|
|
||||||
font-weight: 600;
|
|
||||||
letter-spacing: -0.02em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-subtitle {
|
|
||||||
margin: 0 0 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-theme {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-cards {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, minmax(200px, 1fr));
|
|
||||||
gap: 24px;
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1080px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-card {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
gap: 14px;
|
|
||||||
padding: 22px 24px;
|
|
||||||
color: var(--text);
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-card:hover,
|
|
||||||
.hub-card:focus-visible {
|
|
||||||
color: var(--text);
|
|
||||||
text-decoration: none;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Stronger lift than detail Device cards (2× shadow, higher rise) */
|
|
||||||
.hub-cards .hub-card {
|
|
||||||
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-cards .hub-card:hover,
|
|
||||||
.hub-cards .hub-card:focus-visible {
|
|
||||||
transform: translateY(-10px);
|
|
||||||
box-shadow: 0 20px 48px rgba(0, 0, 0, 0.44);
|
|
||||||
border-color: var(--accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-theme="light"] .hub-cards .hub-card:hover,
|
|
||||||
[data-theme="light"] .hub-cards .hub-card:focus-visible {
|
|
||||||
box-shadow: 0 20px 44px rgba(26, 35, 50, 0.28);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-card-icon {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
flex-shrink: 0;
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
color: var(--accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hub-card-icon .nav-icon {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Same caption weight/size as crash console nav labels (Tickets sidebar) */
|
|
||||||
.hub-card-label {
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
line-height: 1.25;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Git — branch icon (hub only; git app may use its own asset) */
|
|
||||||
.nav-icon--git {
|
|
||||||
width: 18px;
|
|
||||||
height: 18px;
|
|
||||||
}
|
|
||||||
.nav-icon--git::before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
left: 2px;
|
|
||||||
top: 2px;
|
|
||||||
width: 7px;
|
|
||||||
height: 7px;
|
|
||||||
border: 2px solid currentColor;
|
|
||||||
border-radius: 50%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.nav-icon--git::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
left: 8px;
|
|
||||||
top: 5px;
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
border: 2px solid currentColor;
|
|
||||||
border-left: none;
|
|
||||||
border-bottom: none;
|
|
||||||
border-radius: 0 6px 0 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 860px) {
|
|
||||||
.hub-cards {
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
max-width: 420px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: reduce) {
|
|
||||||
.hub-cards .hub-card {
|
|
||||||
transition: border-color .15s ease, box-shadow .15s ease;
|
|
||||||
}
|
|
||||||
.hub-cards .hub-card:hover,
|
|
||||||
.hub-cards .hub-card:focus-visible {
|
|
||||||
transform: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -11,7 +11,64 @@
|
|||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
<link rel="stylesheet" href="/app/androidcast_project/crashes/assets/css/app.css">
|
<link rel="stylesheet" href="/app/androidcast_project/crashes/assets/css/app.css">
|
||||||
<link rel="stylesheet" href="/app/androidcast_project/hub.css">
|
<style>
|
||||||
|
.hub-page { min-height: 100vh; display: flex; flex-direction: column; }
|
||||||
|
.hub-shell { flex: 1; min-height: calc(100vh - 40px); }
|
||||||
|
.hub-main {
|
||||||
|
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
||||||
|
min-height: calc(100vh - 40px); padding: 32px 28px 48px; box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.hub-header { text-align: center; margin-bottom: 36px; }
|
||||||
|
.hub-title { margin: 0 0 8px; font-size: 1.75rem; font-weight: 600; letter-spacing: -0.02em; }
|
||||||
|
.hub-subtitle { margin: 0 0 16px; }
|
||||||
|
.hub-theme { justify-content: center; }
|
||||||
|
.hub-cards {
|
||||||
|
display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr));
|
||||||
|
gap: 24px; width: 100%; max-width: 1080px; margin: 0;
|
||||||
|
}
|
||||||
|
.hub-card {
|
||||||
|
display: flex; flex-direction: row; align-items: center; gap: 14px;
|
||||||
|
padding: 22px 24px; color: var(--text); text-decoration: none; cursor: pointer;
|
||||||
|
}
|
||||||
|
.hub-card:hover, .hub-card:focus-visible {
|
||||||
|
color: var(--text); text-decoration: none; outline: none;
|
||||||
|
}
|
||||||
|
.hub-cards .hub-card {
|
||||||
|
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
|
||||||
|
}
|
||||||
|
.hub-cards .hub-card:hover, .hub-cards .hub-card:focus-visible {
|
||||||
|
transform: translateY(-10px);
|
||||||
|
box-shadow: 0 20px 48px rgba(0, 0, 0, 0.44);
|
||||||
|
border-color: var(--accent);
|
||||||
|
}
|
||||||
|
[data-theme="light"] .hub-cards .hub-card:hover,
|
||||||
|
[data-theme="light"] .hub-cards .hub-card:focus-visible {
|
||||||
|
box-shadow: 0 20px 44px rgba(26, 35, 50, 0.28);
|
||||||
|
}
|
||||||
|
.hub-card-icon {
|
||||||
|
display: flex; align-items: center; justify-content: center;
|
||||||
|
flex-shrink: 0; width: 40px; height: 40px; color: var(--accent);
|
||||||
|
}
|
||||||
|
.hub-card-icon .nav-icon { position: relative; }
|
||||||
|
.hub-card-label { font-size: 14px; font-weight: 500; line-height: 1.25; text-align: left; }
|
||||||
|
.nav-icon--git { width: 18px; height: 18px; }
|
||||||
|
.nav-icon--git::before {
|
||||||
|
content: ""; position: absolute; left: 2px; top: 2px;
|
||||||
|
width: 7px; height: 7px; border: 2px solid currentColor; border-radius: 50%; box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.nav-icon--git::after {
|
||||||
|
content: ""; position: absolute; left: 8px; top: 5px;
|
||||||
|
width: 10px; height: 10px; border: 2px solid currentColor;
|
||||||
|
border-left: none; border-bottom: none; border-radius: 0 6px 0 0; box-sizing: border-box;
|
||||||
|
}
|
||||||
|
@media (max-width: 860px) {
|
||||||
|
.hub-cards { grid-template-columns: 1fr; max-width: 420px; }
|
||||||
|
}
|
||||||
|
@media (prefers-reduced-motion: reduce) {
|
||||||
|
.hub-cards .hub-card { transition: border-color .15s ease, box-shadow .15s ease; }
|
||||||
|
.hub-cards .hub-card:hover, .hub-cards .hub-card:focus-visible { transform: none; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body class="hub-page">
|
<body class="hub-page">
|
||||||
<div class="shell hub-shell">
|
<div class="shell hub-shell">
|
||||||
@@ -28,22 +85,19 @@
|
|||||||
</label>
|
</label>
|
||||||
</header>
|
</header>
|
||||||
<nav class="hub-cards cards cards--lift" aria-label="Android Cast apps">
|
<nav class="hub-cards cards cards--lift" aria-label="Android Cast apps">
|
||||||
<a class="hub-card card card--lift"
|
<a class="hub-card card card--lift" href="crashes/?view=reports">
|
||||||
href="https://apps.f0xx.org/app/androidcast_project/crashes/?view=reports">
|
|
||||||
<span class="hub-card-icon" aria-hidden="true">
|
<span class="hub-card-icon" aria-hidden="true">
|
||||||
<span class="nav-icon nav-icon--reports"></span>
|
<span class="nav-icon nav-icon--reports"></span>
|
||||||
</span>
|
</span>
|
||||||
<span class="hub-card-label">AndroidCast reports</span>
|
<span class="hub-card-label">AndroidCast reports</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="hub-card card card--lift"
|
<a class="hub-card card card--lift" href="git/">
|
||||||
href="https://apps.f0xx.org/app/androidcast_project/git/">
|
|
||||||
<span class="hub-card-icon" aria-hidden="true">
|
<span class="hub-card-icon" aria-hidden="true">
|
||||||
<span class="nav-icon nav-icon--git"></span>
|
<span class="nav-icon nav-icon--git"></span>
|
||||||
</span>
|
</span>
|
||||||
<span class="hub-card-label">AndroidCast git</span>
|
<span class="hub-card-label">AndroidCast git</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="hub-card card card--lift"
|
<a class="hub-card card card--lift" href="crashes/?view=tickets">
|
||||||
href="https://apps.f0xx.org/app/androidcast_project/crashes/?view=tickets">
|
|
||||||
<span class="hub-card-icon" aria-hidden="true">
|
<span class="hub-card-icon" aria-hidden="true">
|
||||||
<span class="nav-icon nav-icon--tickets"></span>
|
<span class="nav-icon nav-icon--tickets"></span>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -9,13 +9,10 @@
|
|||||||
return 301 /app/androidcast_project/;
|
return 301 /app/androidcast_project/;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Static project hub (examples/app_hub — index.html + hub.css on disk)
|
# Static hub: one index.html in project dir (directory alias — not alias-to-file)
|
||||||
location = /app/androidcast_project/ {
|
location = /app/androidcast_project/ {
|
||||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/index.html;
|
alias /var/www/localhost/htdocs/apps/app/androidcast_project/;
|
||||||
}
|
index index.html;
|
||||||
|
|
||||||
location = /app/androidcast_project/hub.css {
|
|
||||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/hub.css;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /app/androidcast_project/crashes/assets/ {
|
location ^~ /app/androidcast_project/crashes/assets/ {
|
||||||
|
|||||||
@@ -27,11 +27,8 @@ server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
location = /app/androidcast_project/ {
|
location = /app/androidcast_project/ {
|
||||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/index.html;
|
alias /var/www/localhost/htdocs/apps/app/androidcast_project/;
|
||||||
}
|
index index.html;
|
||||||
|
|
||||||
location = /app/androidcast_project/hub.css {
|
|
||||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/hub.css;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /app/androidcast_project/crashes/assets/ {
|
location ^~ /app/androidcast_project/crashes/assets/ {
|
||||||
|
|||||||
Reference in New Issue
Block a user