253625a68b
Dotclear's proposed aim is to develop a software that fully respects web standards based on open source solutions, with multilingual interface and publishing capabilities. It is written in PHP. Notable features include handling many blogs, using Wiki or XHTML syntax for entries, adding pages that are independent from the flow of entries and support for several database types: (MySQL, PostgreSQL, SQLite). This pkgsrc packages provides: * Patches to move the configuration file config.php to PKG_SYSCONFDIR, * Patches to move files writable by the web server (public files, cache files and additional plugins) to directories relative to VARBASE.
33 lines
849 B
Text
33 lines
849 B
Text
# $NetBSD: lighttpd.conf,v 1.1 2021/06/24 02:32:28 triaxx Exp $
|
|
#
|
|
# Configuration example fragment for www/lighttpd
|
|
|
|
server.modules += (
|
|
"mod_alias",
|
|
"mod_fastcgi",
|
|
)
|
|
|
|
$HTTP["url"] =~ "^/dotclear" {
|
|
alias.url = ( "/dotclear" => "@DOTCLEAR_SHAREDIR@" )
|
|
$HTTP["url"] =~ "^/dotclear/public" {
|
|
alias.url = ( "/dotclear/public" => "@DOTCLEAR_PUBDIR@" )
|
|
}
|
|
fastcgi.server = (
|
|
".php" =>
|
|
(( "socket" => "@VARBASE@/run/dotclear.sock",
|
|
)),
|
|
)
|
|
}
|
|
|
|
# Example fragment for virtual hosting
|
|
#$HTTP["host"] =~ "^dotclear\.example\.org" {
|
|
# server.document-root = "@DOTCLEAR_SHAREDIR@"
|
|
# $HTTP["url"] =~ "^/public" {
|
|
# alias.url = ( "/public" => "@DOTCLEAR_PUBDIR@" )
|
|
# }
|
|
# fastcgi.server = (
|
|
# ".php" =>
|
|
# (( "socket" => "@VARBASE@/run/dotclear.sock",
|
|
# )),
|
|
# )
|
|
#}
|