diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-06-13 11:51:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-13 11:51:37 +0200 |
commit | d220a951218149132189dbbdb149236d3701022f (patch) | |
tree | c40421716fe3b0f8be79605e8d2e9e313b68598f | |
parent | 15840670287d9c3683e7d02984f61deab825e08a (diff) | |
parent | 02d10905b3b8233ef918977ed2991f66daea0930 (diff) | |
download | wallabag-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.rst | 2 |
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 | ||