gpt4 book ai didi

linux - Gitweb 显示不正确

转载 作者:太空宇宙 更新时间:2023-11-04 11:36:55 24 4
gpt4 key购买 nike

我尝试设置 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 文件。 编辑:这是因为我没有更新缓存。

有什么想法吗?

最佳答案

问题是 CSS 文档没有被正确识别。

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

需要设置mime类型。

关于linux - Gitweb 显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7127551/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com