21 lines
482 B
YAML
21 lines
482 B
YAML
# 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;
|
|
}
|
|
}
|