chore: more improvements

This commit is contained in:
Ed L
2025-11-15 12:38:36 -08:00
parent 4ff2f8be9b
commit 7461431ff5
2 changed files with 3 additions and 9 deletions

View File

@ -9,19 +9,12 @@ events {}
error_log logs/error.log debug;
http {
server {
listen 8888;
return 418 "proxy passed to backend\n";
}
server {
listen 8080;
location / {
add_header "Content-Type" "text/html";
howto "GET";
proxy_pass http://localhost:8888;
}
}
}

View File

@ -1,3 +1,4 @@
<ul>
{{#each persons}}
Person: {{ id }}. {{ name }}
<li>Person: {{ id }}. {{ name }}
{{/each}}