diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-06-16 23:46:33 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2018-06-17 13:21:01 +0200 |
commit | decae8c119e0f4750d10909abc47d8afb89af362 (patch) | |
tree | 8a9587a53f0161fe95141d982ff4cea40075372b /.docker/.htaccess | |
parent | 865d57b84abb0fa3fc04aec7ce2d34326dac34fa (diff) | |
download | Shaarli-decae8c119e0f4750d10909abc47d8afb89af362.tar.gz Shaarli-decae8c119e0f4750d10909abc47d8afb89af362.tar.zst Shaarli-decae8c119e0f4750d10909abc47d8afb89af362.zip |
docker: build the images from the local sources
Relates to https://github.com/shaarli/Shaarli/issues/1153
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
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> | ||