mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-22 15:15:50 -06:00
fix logo path handling
This commit is contained in:
parent
6d6959e3f4
commit
d78a333192
2 changed files with 9 additions and 2 deletions
|
@ -31,7 +31,7 @@
|
|||
</style>
|
||||
</head>
|
||||
<body bg-ctp-base text-ctp-text un-cloak flex flex-col mt-15>
|
||||
<img h-25% mx-auto src="daylin-nix-cache-logo.svg">
|
||||
<img h-25% mx-auto src="/daylin-nix-cache-logo.svg">
|
||||
<div mx-auto text-center>
|
||||
<div>
|
||||
<div>
|
||||
|
|
|
@ -87,6 +87,7 @@ in
|
|||
|
||||
virtualHosts = {
|
||||
"attic.dayl.in".extraConfig = ''
|
||||
|
||||
redir /oizys /
|
||||
|
||||
handle / {
|
||||
|
@ -100,10 +101,16 @@ in
|
|||
'';
|
||||
|
||||
"nix-cache.dayl.in".extraConfig = ''
|
||||
handle / {
|
||||
@frontend {
|
||||
path /
|
||||
path /daylin-nix-cache-logo.svg
|
||||
}
|
||||
|
||||
handle @frontend {
|
||||
root * ${static-nix-cache}
|
||||
file_server
|
||||
}
|
||||
|
||||
handle /* {
|
||||
reverse_proxy http://localhost:${harmoniaPort}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue