summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-03-23 17:12:52 -0500
committerChristian Cleberg <[email protected]>2026-03-23 17:12:52 -0500
commitd8d62d76e4f54698b999ea30a6c1c12b71e5fa58 (patch)
tree3f86b3edbffa83779c9e8144349c95ea53c66cb2 /linux
parentee7dff68504387b42172318b9378e0949e835740 (diff)
downloaddotfiles-d8d62d76e4f54698b999ea30a6c1c12b71e5fa58.tar.gz
dotfiles-d8d62d76e4f54698b999ea30a6c1c12b71e5fa58.tar.bz2
dotfiles-d8d62d76e4f54698b999ea30a6c1c12b71e5fa58.zip
add 1kb roguelike
Diffstat (limited to 'linux')
-rw-r--r--linux/nginx/etc/nginx/conf.d/1kb.conf20
1 files changed, 20 insertions, 0 deletions
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;
+ }
+}