first commit

This commit is contained in:
sttlab
2026-07-22 14:41:10 +00:00
commit e1577fe061
35 changed files with 1847 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# nginx config for the digest file server: directory listing (autoindex)
# over the generated Markdown digests, no app logic involved.
apiVersion: v1
kind: ConfigMap
metadata:
name: digest-files-nginx-conf
namespace: watch
data:
default.conf: |
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}