Gitweb无法正确显示

时间:2011-08-19 21:19:54

标签: linux gitweb lighttpd

我尝试设置gitweb,但是当我加载页面时,它显得很奇怪......

enter image description here


编辑:如果人们误解了,这应该是这样的: enter image description here


这就是我的lighttpd配置文件:

server.port = 80
server.username = "http"
server.groupname = "http"
server.document-root = "/usr/share/gitweb"
server.errorlog = "/var/log/lighttpd/error.log"
dir-listing.activate = "enable"
index-file.names = ( "gitweb.cgi" )
cgi.assign = (
    ".cgi" => ""
)
mimetype.assign = (
    ".html" => "text/html",
    ".txt" => "text/plain",
    ".jpg" => "image/jpeg",
    ".png" => "image/png"
)
server.modules += (
    "mod_cgi",
    "mod_setenv"
)
setenv.add-environment = (
    "GITWEB_CONFIG" => "/etc/conf.d/gitweb.conf"
)

这就是gitweb.conf的样子:

$git_temp = "/tmp";

# The directories where your projects are. Must not end with a slash.
$projectroot = "/path/to/projects";

# Base URLs for links displayed in the web interface.
our @git_base_url_list = qw(git://localhost http://git@localhost);

/path/to/projects只是为了给你一个想法。)

当我使用git instaweb时,它似乎很好,虽然看起来它忽略了我正在尝试使用的新gitweb.css文件。 编辑:这是因为我没有更新缓存。

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

问题是CSS文档无法正确识别。

mimetype.assign = (
    ".html" => "text/html",
    ".txt" => "text/plain",
    ".jpg" => "image/jpeg",
    ".png" => "image/png",
    ".css" => "text/css"
)

需要设置mime类型。

答案 1 :(得分:0)

gitweb仅适用于裸存储库。所以要确保你有一个。您的屏幕截图看起来像您已创建一个具有完整工作树的存储库,并指向此目录。

修改 当前版本的gitweb也适用于非裸机,但您的系统可能有较旧版本。

可以在git-config中配置缺少的存储库名称:

[gitweb]
  description = "My Repository Description"
  cloneurl    = git://here.you.could/clone/me.git
  owner       = "Me"

有更多可用的配置参数,只需查看文档(在/ usr / share / doc / git *下)