aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-06-13 11:51:37 +0200
committerGitHub <noreply@github.com>2016-06-13 11:51:37 +0200
commitd220a951218149132189dbbdb149236d3701022f (patch)
treec40421716fe3b0f8be79605e8d2e9e313b68598f
parent15840670287d9c3683e7d02984f61deab825e08a (diff)
parent02d10905b3b8233ef918977ed2991f66daea0930 (diff)
downloadwallabag-d220a951218149132189dbbdb149236d3701022f.tar.gz
wallabag-d220a951218149132189dbbdb149236d3701022f.tar.zst
wallabag-d220a951218149132189dbbdb149236d3701022f.zip
Merge pull request #2145 from even-allmighty/master
Corrected Regex for lighttpd rewrite
-rw-r--r--docs/en/user/installation.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst
index 2c6a2f5f..58d9fb7e 100644
--- a/docs/en/user/installation.rst
+++ b/docs/en/user/installation.rst
@@ -226,7 +226,7 @@ Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe
226 dir-listing.activate = "disable" 226 dir-listing.activate = "disable"
227 227
228 url.rewrite-if-not-file = ( 228 url.rewrite-if-not-file = (
229 "^/([^?])(?:\?(.))?" => "/app.php?$1&$2", 229 "^/([^?]*)(?:\?(.*))?" => "/app.php?$1&$2",
230 "^/([^?]*)" => "/app.php?=$1", 230 "^/([^?]*)" => "/app.php?=$1",
231 ) 231 )
232 232