Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schneidmaster/nginx-fancyindex-console
Old-school console theme for Nginx fancyindex.
https://github.com/schneidmaster/nginx-fancyindex-console
Last synced: about 2 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-17T23:17:33.000Z (about 9 years ago)
- Last Synced: 2024-04-15T00:15:03.785Z (9 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 3
- 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).
![nginx-fancyindex-console](https://cloud.githubusercontent.com/assets/1896112/10561685/f8e5762c-74fa-11e5-831f-8e57b7b748d8.png)
####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).