mirror of
git://f0xx.org/android_cast
synced 2026-07-29 04:38:53 +03:00
Add static Android Cast project hub landing page.
Three card links (reports, git, tickets) match crash console styling with stronger hover lift; nginx serves index.html at /app/androidcast_project/ instead of redirecting to crashes. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -6,11 +6,16 @@
|
||||
}
|
||||
|
||||
location = /app/androidcast_project {
|
||||
return 301 /app/androidcast_project/crashes/;
|
||||
return 301 /app/androidcast_project/;
|
||||
}
|
||||
|
||||
# Static project hub (examples/app_hub — index.html + hub.css on disk)
|
||||
location = /app/androidcast_project/ {
|
||||
return 301 /app/androidcast_project/crashes/;
|
||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/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/ {
|
||||
|
||||
@@ -23,11 +23,15 @@ server {
|
||||
}
|
||||
|
||||
location = /app/androidcast_project {
|
||||
return 301 /app/androidcast_project/crashes/;
|
||||
return 301 /app/androidcast_project/;
|
||||
}
|
||||
|
||||
location = /app/androidcast_project/ {
|
||||
return 301 /app/androidcast_project/crashes/;
|
||||
alias /var/www/localhost/htdocs/apps/app/androidcast_project/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/ {
|
||||
|
||||
Reference in New Issue
Block a user