1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Fix lighttpd documentation

This commit is contained in:
Nicolas Lœuillet 2016-05-04 11:40:13 +02:00
parent 9039103c37
commit 8b563fc04e
2 changed files with 20 additions and 22 deletions

View file

@ -192,20 +192,20 @@ After reloading or restarting nginx, you should now be able to access wallabag a
When you want to import large file into wallabag, you need to add this line in your nginx configuration ``client_max_body_size XM; # allows file uploads up to X megabytes``.
Configuration on LigHTTPd
Configuration on lighttpd
~~~~~~~~~~~~~~~~~~~~~~~~~
Edit your ``lighttpd.conf`` file and paste this configuration into it:
Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe for wallabag (edit your ``lighttpd.conf`` file and paste this configuration into it):
::
server.modules = (
"mod_fastcgi",
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
"mod_fastcgi",
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
)
server.document-root = "/var/www/wallabag/web"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
@ -226,9 +226,8 @@ Edit your ``lighttpd.conf`` file and paste this configuration into it:
dir-listing.activate = "disable"
url.rewrite-if-not-file = (
"^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
"^/([^?]*)" => "/app.php?=$1",
"^/wiki$" => "/app.php",
"^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
"^/([^?]*)" => "/app.php?=$1",
)
Rights access to the folders of the project