summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-08-03 11:53:17 -0500
committerChristian Cleberg <[email protected]>2026-08-03 11:53:17 -0500
commit3d0c165f492b13fdfecd98498eac191a5f67debe (patch)
tree7f57a25740447d99f300670baf3d16cf5a5d2efd
parent41618d30fc1fdc9ef26aa5003ac48fadf0d1fe82 (diff)
downloaddotfiles-3d0c165f492b13fdfecd98498eac191a5f67debe.tar.gz
dotfiles-3d0c165f492b13fdfecd98498eac191a5f67debe.tar.bz2
dotfiles-3d0c165f492b13fdfecd98498eac191a5f67debe.zip
add i.conf
-rw-r--r--linux/nginx/etc/nginx/conf.d/i.conf9
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/nginx/etc/nginx/conf.d/i.conf b/linux/nginx/etc/nginx/conf.d/i.conf
new file mode 100644
index 0000000..23cef0d
--- /dev/null
+++ b/linux/nginx/etc/nginx/conf.d/i.conf
@@ -0,0 +1,9 @@
+server {
+ listen 127.0.0.1:10048;
+ server_name i.krz.sh;
+ include custom.d/basic.conf;
+ include custom.d/security/content-security-policy.conf;
+ root /var/www/i/;
+ autoindex on;
+ location / { try_files $uri $uri/ =404; }
+}