Added support for x-sendfile

master
Miroslav Prasil 10 years ago
parent c7c8618dc6
commit 5518444e4b
  1. 6
      README.md
  2. 3
      dokuwiki.conf

@ -12,9 +12,15 @@ You can now visit the install page to configure your new DokuWiki wiki.
For example, if you are running container locally, you can acces the page For example, if you are running container locally, you can acces the page
in browser by going to http://127.0.0.1/install.php in browser by going to http://127.0.0.1/install.php
Optimizing your wiki
--------------------
Lighttpd configuration also includes rewrites, so you can enable Lighttpd configuration also includes rewrites, so you can enable
nice URLs in settings (Advanced -> Nice URLs, set to ".htaccess") nice URLs in settings (Advanced -> Nice URLs, set to ".htaccess")
For better performance enable xsendfile in settings.
Set to proprietary lighttpd header (for lighttpd < 1.5)
Build your own Build your own
-------------- --------------

@ -6,7 +6,8 @@ fastcgi.server = ( ".php" =>
( "localhost" => ( "localhost" =>
( (
"socket" => "/var/run/lighttpd/php-fastcgi.socket", "socket" => "/var/run/lighttpd/php-fastcgi.socket",
"bin-path" => "/usr/bin/php5-cgi" "bin-path" => "/usr/bin/php5-cgi",
"allow-x-send-file" => "enable"
) )
) )
) )

Loading…
Cancel
Save