fix: minor fix for css; listen localhost for reverse proxy

This commit is contained in:
Konuri Maki 2024-12-17 23:47:28 +08:00
parent 1985566ae5
commit 5d06b7b2dd
2 changed files with 7 additions and 1 deletions

View file

@ -3,9 +3,15 @@
--back: #fdfdfd; --back: #fdfdfd;
} }
* {
box-sizing: border-box;
}
body { body {
margin: 1em auto; margin: 1em auto;
width: 21cm; width: 21cm;
max-width: 100%;
padding: 8px 0;
line-height: 1.5; line-height: 1.5;
background-color: var(--back); background-color: var(--back);
color: var(--fore); color: var(--fore);

View file

@ -12,7 +12,7 @@ import (
"time" "time"
) )
const junkaddr = "[::]:8012" const junkaddr = "localhost:18012"
const proxybufsize = 4 << 10 const proxybufsize = 4 << 10
type JunkConf struct { type JunkConf struct {