first commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user