https://github.com/schneidmaster/nginx-fancyindex-console
Old-school console theme for Nginx fancyindex.
https://github.com/schneidmaster/nginx-fancyindex-console
Last synced: 4 months ago
JSON representation
Old-school console theme for Nginx fancyindex.
- Host: GitHub
- URL: https://github.com/schneidmaster/nginx-fancyindex-console
- Owner: schneidmaster
- License: mit
- Created: 2015-10-17T23:11:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-17T23:17:33.000Z (over 9 years ago)
- Last Synced: 2025-01-17T20:23:21.098Z (6 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
nginx-fancyindex-console
===An old-school DOS-like console theme for [nginx fancyindex](https://github.com/aperezdc/ngx-fancyindex).

####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)
#####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
- js/history.js
- Restart your nginx server.####Credits:
Based on [Nginx-Fancyindex-Theme](https://github.com/TheInsomniac/Nginx-Fancyindex-Theme).