Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
htaccess change (for better basic auth compatibility)
Browse files Browse the repository at this point in the history
  • Loading branch information
ernscht committed Feb 27, 2015
1 parent 36e414c commit 9217c35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .htaccess
Expand Up @@ -5,21 +5,25 @@ Options -Indexes +FollowSymLinks
<Files .*>
Order Deny,Allow
Deny From All
Satisfy All
</Files>

<Files config.json>
Order Deny,Allow
Deny From All
Satisfy All
</Files>

<FilesMatch ^(Gruntfile|gulpfile)\.js$>
Order Deny,Allow
Deny From All
Satisfy All
</FilesMatch>

<FilesMatch "\.(tpl|yml|ftl|less|scss|json|xml|md|conf|log|txt|bat|sh)$">
Order Deny,Allow
Deny from all
Deny From All
Satisfy All
</FilesMatch>

# Routing
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -20,8 +20,8 @@ Terrific Micro is simple, fast and flexible. Use this app for all your frontend

## Quick Start

You only need an Apache web server with PHP 5.3+ support.
Enable `mod_rewrite` and optionally `mod_deflate` and add the directive `AllowOverride All` for your directory.
You only need an Apache web server 2.2+ with PHP 5.3+ support.
Enable `mod_rewrite` and optionally `mod_deflate` and add the directive `AllowOverride All` for your directory. (Apache 2.4 needs `mod_access_compat` enabled.)

1. Clone repo to a project folder in your web root:

Expand Down

0 comments on commit 9217c35

Please sign in to comment.