All Projects → jbox-web → nginx-index-template

jbox-web / nginx-index-template

Licence: other
Nginx Index Template

Programming Languages

XSLT
1337 projects

Projects that are alternatives of or similar to nginx-index-template

kube-template
Watches Kubernetes for updates, writing output of a series of templates to files
Stars: ✭ 27 (-35.71%)
Mutual labels:  nginx-templates

Nginx Index Template

Bootstrap version of : dirlist.xslt with breadcrumb

To use it :

server {
  server_name   foo.bar.baz;
  listen        80;
  root          /home/aptly/endpoints;

  autoindex     on;
  autoindex_format xml;

  access_log    /var/log/nginx/aptly.access.log;
  error_log     /var/log/nginx/aptly.error.log;


  location / {
    try_files $uri @autoindex;
  }

  location @autoindex {
    xslt_stylesheet /home/aptly/nginx_template.xslt path='$uri';
  }
}

Screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].