mirror of
https://git.savannah.gnu.org/git/gnuboot.git
synced 2025-01-05 15:57:40 +01:00
Denis 'GNUtoo' Carikli
388c0ef3d0
While this doesn't show the complete history of GNU Boot, it is at least useful for fixing missing copyrights inside copyright headers. Also I tried adding the first tarball releases of Libreboot, before it was in git, inside the same git-history.dot and it turned out to be way too messy as some arrows ended up mostly in the same place making it impossible to distinguish which arrow went where without using color or other ways of distinguishing them. However the textual version of the tarball history turned out to be easier to read/understand so we used that. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> neox: minor fix in the commit message Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
32 lines
1.2 KiB
Cheetah
32 lines
1.2 KiB
Cheetah
# Copyright (C) 2023,2024 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
server.bind = "localhost"
|
|
server.port = LIGHTTPD_PORT
|
|
server.document-root = var.CWD + "/site/"
|
|
dir-listing.activate = "enable"
|
|
index-file.names = ( "index.html" )
|
|
mimetype.assign = (
|
|
".css" => "text/css",
|
|
".dot" => "text/plain",
|
|
".gif" => "image/gif",
|
|
".html" => "text/html",
|
|
".jpeg" => "image/jpeg",
|
|
".jpg" => "image/jpeg",
|
|
".js" => "application/x-javascript",
|
|
".png" => "image/png",
|
|
".txt" => "text/plain",
|
|
"" => "application/octet-stream"
|
|
)
|