diff options
author | VirtualTam <virtualtam+github@flibidi.net> | 2018-06-20 16:29:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-20 16:29:27 +0200 |
commit | 5420c87e22570c8aface1dfe5fc1f54bd6bb4845 (patch) | |
tree | 8a9587a53f0161fe95141d982ff4cea40075372b /.docker/.htaccess | |
parent | e36479d9ffd71b504bc99501ea1fef2579ff46b6 (diff) | |
parent | decae8c119e0f4750d10909abc47d8afb89af362 (diff) | |
download | Shaarli-5420c87e22570c8aface1dfe5fc1f54bd6bb4845.tar.gz Shaarli-5420c87e22570c8aface1dfe5fc1f54bd6bb4845.tar.zst Shaarli-5420c87e22570c8aface1dfe5fc1f54bd6bb4845.zip |
Merge pull request #1157 from virtualtam/v0.9-dockerfile
v0.9 - Build the Docker images from the local sources
Diffstat (limited to '.docker/.htaccess')
-rw-r--r-- | .docker/.htaccess | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.docker/.htaccess b/.docker/.htaccess new file mode 100644 index 00000000..f601c1ee --- /dev/null +++ b/.docker/.htaccess | |||
@@ -0,0 +1,13 @@ | |||
1 | <IfModule version_module> | ||
2 | <IfVersion >= 2.4> | ||
3 | Require all denied | ||
4 | </IfVersion> | ||
5 | <IfVersion < 2.4> | ||
6 | Allow from none | ||
7 | Deny from all | ||
8 | </IfVersion> | ||
9 | </IfModule> | ||
10 | |||
11 | <IfModule !version_module> | ||
12 | Require all denied | ||
13 | </IfModule> | ||