Skip to content

isabella232/Nginx-Fancyindex-Theme

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NGINX FancyIndex Theme

A prettier theme for nginx' fancyindex module. Further details about this excellent module can be found at the dev's github page.

NOTE:

NGX-FANCYINDEX truncates the file name to 50 characters subtracts 3 and then appends a "..>" to the truncated name. This can be fixed by recompiling NGX-FANCYINDEX after changing line 55 of "ngx_http_fancyindex_module.c":

From:

#define NGX_HTTP_FANCYINDEX_NAME_LEN 50

To:

#define NGX_HTTP_FANCYINDEX_NAME_LEN 500 (or some other number greater than 50)

In the nginx fancyindex module 0.4.0 or higher, it is now possible to use a directive to control the name length.

fancyindex_name_length
Syntax: fancyindex_name_length length
Default: fancyindex_name_length 50
Context: http, server, location
Description: Defines the maximum file name length limit in bytes.
Usage:
  • Compile nginx with the fancyindex module.
  • Include the contents of 'fancyindex.conf' in your location directive of your nginx conf.
  • copy the remaining items in your web root under 'fancyindex'.
  • header.html
  • footer.html
  • css\fancyindex.css
  • fonts\*
  • images\breadcrumb.png
  • Restart your nginx server.
Added/Modified:
  • Mime type icons from Splitbrain
  • Icons default to enabled on large devices and off on small devices like phones.
  • If you'd prefer no icons at all: copy css\fancyindex_NoIcons.css css\fancyindex.css
  • Slightly better handling of mobile CSS click areas.
  • Added HTML5 History for quicker page transitions.
Addendums:
  • If you want your 'Parent Directory/' listing back in your file listings:
  • Read: This Issue

Image1

Image1

Image1

About

Theme for Nginx' fancyindex module

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 39.8%
  • CSS 39.6%
  • HTML 20.6%