WIP: add css from stasis

This commit is contained in:
2025-06-16 20:18:04 -07:00
parent d334aaf003
commit c87a2314c5
15 changed files with 1146 additions and 6 deletions

View File

@@ -5,14 +5,21 @@ events {
}
http {
server {
root /opt/www;
listen 8080;
include mime.types;
charset utf-8;
location / {
default_type text/html;
# content_by_lua_block {
# ngx.say("<p>hello, world</p>")
# }
}
location /css {
expires 1h;
alias css;
}
}
}