Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artyuum/nginx-fancyindex-theme
My personnal theme for Nginx-FancyIndex.
https://github.com/artyuum/nginx-fancyindex-theme
fancyindex indexof nginx theme
Last synced: 2 months ago
JSON representation
My personnal theme for Nginx-FancyIndex.
- Host: GitHub
- URL: https://github.com/artyuum/nginx-fancyindex-theme
- Owner: artyuum
- License: mit
- Created: 2018-05-21T04:18:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-20T07:58:39.000Z (about 2 years ago)
- Last Synced: 2024-05-02T04:18:23.049Z (8 months ago)
- Topics: fancyindex, indexof, nginx, theme
- Language: CSS
- Homepage:
- Size: 296 KB
- Stars: 18
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nginx-FancyIndex-Theme
My personnal theme of Nginx-FancyIndex.
![screenshot](https://github.com/artyuum/Nginx-FancyIndex-Theme/raw/master/screenshot.PNG)# Requirements
1. nginx
2. fancyindex module (nginx-extras)# Installation
1. `git clone https://github.com/artyuum/Nginx-FancyIndex-Theme.git /etc/nginx/fancyindex_theme`.
2. Edit your virtual host as follow :
```bash
location / {
fancyindex on;
fancyindex_header "/fancyindex_theme/header.html";
fancyindex_ignore "/fancyindex_theme";
}location /fancyindex_theme {
alias /etc/nginx/fancyindex_theme;
try_files $uri $uri/ =404;
}```
3. Done!