-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.htaccess
93 lines (81 loc) · 3.55 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# ENABLE DIRECTORY VIEWS
Options +Indexes
AddType image/svg+xml svg svgz
AddEncoding gzip svgz
# STRONG HTACCESS PROTECTION
<Files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
</Files>
# DIRECTORY CUSTOMIZATION
<IfModule mod_autoindex.c>
# SET INDEX OPTIONS
IndexOptions IgnoreCase FancyIndexing HTMLTable SuppressHTMLPreamble FoldersFirst VersionSort NameWidth=* DescriptionWidth=* XHTML IconHeight=16 IconWidth=16
# SET DISPLAY ORDER
IndexOrderDefault Ascending Name
IndexStyleSheet /pantallas/assets/css/style.css
# SPECIFY HEADER FILE
HeaderName /pantallas/layout/header.html
# SPECIFY FOOTER FILE
ReadmeName /pantallas/layout/footer.html
# IGNORE THESE FILES
IndexIgnoreReset ON
IndexIgnore .ftpquota .DS_Store .git .idea
# FILE DESCRIPTIONS
AddDescription "MPEG Layer 3 Format" .mp3
AddDescription "MPEG Layer 4 Format" .mp4
AddDescription "SubRip subtitles format" .srt
AddDescription "GZIP compressed TAR archive" .tgz .tar.gz
AddDescription "GZIP compressed archive" .Z .z .gz .zip
AddDescription "RAR compressed archive" .rar
AddDescription "TAR compressed archive" .tar
AddDescription "ZIP compressed archive" .zip
AddDescription "Windows executable file" .exe
AddDescription "Common Gateway Interface" .cgi
AddDescription "Joint Photographics Experts Group" .jpg .jpeg .jpe
AddDescription "Graphic Interchange Format" .gif
AddDescription "Portable Network Graphic" .png
AddDescription "Vector graphic" .ps .ai .eps
AddDescription "Hypertext Markup Language" .html .shtml .htm
AddDescription "Cascading Style Sheet" .css
AddDescription "DocType Definition" .dtd
AddDescription "Extensible Markup Language" .xml
AddDescription "Win32 compressed HTML help" .chm
AddDescription "Adobe Portable Document Format" .pdf
AddDescription "Plain text file" .txt .nfo .faq .readme
AddDescription "Unix man page" .man
AddDescription "Email data" .eml .mbox
AddDescription "Microsoft Word document" .doc .docx
AddDescription "Microsoft Excel document" .xls .xlsx
AddDescription "PHP: Hypertext Preprocessor script" .php .php3 .php4
AddDescription "PHP: Hypertext Preprocessor source code" .phps
AddDescription "JavaScript Object Notation" .json
AddDescription "JavaScript" .js
AddDescription "Java code" .java
AddDescription "Unix shell script" .sh .shar .csh .ksh .command
AddDescription "Mac OS X shell script" .command
AddDescription "Configuration file" .conf
AddDescription "Mac OS X terminal" .term
AddDescription "BitTorrent file" .torrent
AddDescription "Windows link" .lnk .url
AddDescription "Scalable Vector Graphic" .svg
AddDescription "OpenDocument Text" .odt
AddDescription "OpenDocument Spreadsheet" .ods
AddDescription "OpenDocument Presentation" .odp
AddDescription "OpenDocument Graphics" .odg
AddDescription "OpenDocument Chart" .odc
AddDescription "OpenDocument Formula" .odf
AddDescription "OpenDocument Database" .odb
AddDescription "OpenDocument Image" .odi
AddDescription "OpenDocument Text Master" .odm
AddDescription "OpenDocument Text Template" .ott
AddDescription "OpenDocument Spreadsheet Template" .ots
AddDescription "OpenDocument Presentation Template" .otp
AddDescription "OpenDocument Graphics Template" .otg
AddDescription "YAML: Yet Another Markup Language" .yaml .yml
AddDescription "SASS: Syntactically Awesome Stylesheets" .sass
AddDescription "SCSS: Sassy Cascading Style Sheet" .scss
AddDescription "Travis configuration" .travis
# DEFAULT DESCRIPTION
# AddDescription "[<span class='description'>Unknown item</span>]" *
</IfModule>