cmc/dotfiles

Using GNU Stow to manage my dotfiles.

clone: git clone https://gitbay.org/cmc/dotfiles.git

a2e5314051249a26d82a8bf4bec1079c375be5f8

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-03-26T03:22:23Z

add 1kb roguelike
 linux/nginx/etc/nginx/conf.d/1kb.conf | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/linux/nginx/etc/nginx/conf.d/1kb.conf b/linux/nginx/etc/nginx/conf.d/1kb.conf
index c002964..7e44dbb 100644
--- a/linux/nginx/etc/nginx/conf.d/1kb.conf
+++ b/linux/nginx/etc/nginx/conf.d/1kb.conf
@@ -1,6 +1,6 @@
 server {
-    listen 443 ssl http2;
-    listen [::]:443 ssl http2;
+    listen 443;
+    http2 on;
     server_name 1kb.cleberg.net;
 
     root /var/www/1kb;
@@ -9,6 +9,10 @@ server {
     server_tokens off;
     etag off;
     if_modified_since off;
+    expires off;
+    gzip off;
+    gzip_vary off;
+    charset off;
 
     location = / {
         try_files /index.html =404;