feat: playground static site with cursor webhook deploy

Scaffold nginx + deploy-hook stack for playground.schwenk.online,
Gitea cursor workflow, directory-based public/ content, and boka
bootstrap via git clone.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Frank Schwenk
2026-07-05 16:07:24 +02:00
commit 8cdde429f5
21 changed files with 1173 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
server {
listen 80;
listen [::]:80;
server_name playground.schwenk.online;
root /usr/share/nginx/html;
index index.html;
include /etc/nginx/conf.d/security-headers.conf;
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css text/xml application/json application/javascript application/xml+rss application/atom+xml image/svg+xml;
location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg|webp)$ {
expires 1y;
add_header Cache-Control "public, no-transform";
}
location / {
try_files $uri $uri/ =404;
}
location ~ /\. {
deny all;
return 404;
access_log off;
log_not_found off;
}
}