1

lighttpd を実行するラズベリー pi に ikiwiki をインストールしようとしています。

ユーザーのホームで Wiki を作成できますが、Web サーバー (アドレス + "~/username/wikiname") で表示しようとすると、404 が返されます。

wiki ディレクトリを にリンクする/var/wwwと、500 エラーが発生します。

私は何か間違っているか、何かが足りないのですか?

コメントで要求されているように、これが私の lighttpd.conf です。

server.modules = (
    "mod_access",
    "mod_alias",
    "mod_compress",
    "mod_redirect",
    #"mod_rewrite",
    "mod_fastcgi"
)

server.modules += ( "mod_scgi" )
scgi.server = (
            "/RPC2" =>
            ( "127.0.0.1" =>
              (
               "socket" => "/tmp/rpc.socket",
               "check-local" => "disable",
               "disable-time" => 0,  # don't disable scgi if connection fails
              )
            )
          )
fastcgi.server             = ( ".php" =>
                           ( "localhost" =>
                             (
                            "min-procs" => 1,
                            "max-procs" => 2,
                            "max-load-per-proc" => 4,
                            "socket" => "/tmp/php-fastcgi.socket",
                            "bin-path" => "/usr/bin/php5-cgi"
                             )
                           )
                        )


server.document-root        = "/var/www" 
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/lighttpd/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 80
index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"

ここで強調表示されている手順も実行しました: http://ikiwiki.info/tips/dot_cgi/

4

1 に答える 1

0

答えは、投稿した構成ファイルにあります。以下を含む行:

url.access-deny             = ( "~", ".inc" )

これは URL リクエストをブロックしています。設定ファイルからチルダを削除してみてください。

于 2013-03-07T19:50:23.100 に答える