initial commit

This commit is contained in:
Quentin W 2024-07-18 14:09:32 -04:00
commit 5b839e0543
174 changed files with 12261 additions and 0 deletions

View file

@ -0,0 +1,21 @@
$HTTP["host"] =~ "^files\.thirdculture\.top$" {
auth.backend = "htpasswd"
auth.backend.htpasswd.userfile = "/etc/lighttpd/.htpasswd"
auth.require = ( "" =>
(
"method" => "basic",
"realm" => "Password protected area",
"require" => "valid-user"
)
)
proxy.server = (
"" => (
(
"host" => "gossa",
"port" => 8001
)
)
)
}

View file

@ -0,0 +1,6 @@
$HTTP["host"] =~ "^ppl\.thirdculture\.top$" {
index-file.names = ( )
server.error-handler-404 = "/werc.rc"
alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" )
cgi.assign += ( ".rc" => "")
}

View file

@ -0,0 +1,6 @@
$HTTP["host"] =~ "^thirdculture\.top$" {
index-file.names = ( )
server.error-handler-404 = "/werc.rc"
alias.url += ( "/werc.rc" => "/var/www/werc/bin/werc.rc" )
cgi.assign += ( ".rc" => "")
}