From d8d62d76e4f54698b999ea30a6c1c12b71e5fa58 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 23 Mar 2026 17:12:52 -0500 Subject: add 1kb roguelike --- linux/nginx/etc/nginx/conf.d/1kb.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 linux/nginx/etc/nginx/conf.d/1kb.conf (limited to 'linux') diff --git a/linux/nginx/etc/nginx/conf.d/1kb.conf b/linux/nginx/etc/nginx/conf.d/1kb.conf new file mode 100644 index 0000000..c002964 --- /dev/null +++ b/linux/nginx/etc/nginx/conf.d/1kb.conf @@ -0,0 +1,20 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name 1kb.cleberg.net; + + root /var/www/1kb; + index index.html; + + server_tokens off; + etag off; + if_modified_since off; + + location = / { + try_files /index.html =404; + } + + location = /index.html { + try_files /index.html =404; + } +} -- cgit v1.2.3