slitaz-forge rev 443

mixer: add vhosts.conf and custom tazdev.conf
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 29 23:04:11 2014 +0100 (2014-01-29)
parents d1cc8337179f
children 9855896776af
files mixer/rootfs/etc/lighttpd/vhosts.conf mixer/rootfs/etc/slitaz/tazdev.conf
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mixer/rootfs/etc/lighttpd/vhosts.conf	Wed Jan 29 23:04:11 2014 +0100
     1.3 @@ -0,0 +1,21 @@
     1.4 +# /etc/lighttpd/vhosts.conf : Virtual hosts configuration file.
     1.5 +#
     1.6 +
     1.7 +# mixer.slitaz.org (Server canonical hostname)
     1.8 +#
     1.9 +$HTTP["host"] =~ "mixer\.slitaz\.org$" {
    1.10 +  server.document-root = "/home/slitaz/www/mixer"
    1.11 +  index-file.names += ( "index.php" )
    1.12 +}
    1.13 +
    1.14 +# slish.in
    1.15 +#
    1.16 +$HTTP["host"] =~ "(slish\.in$)" {
    1.17 +  server.document-root = "/home/slish/www"
    1.18 +  server.errorlog = "/var/log/lighttpd/slish.in-error.log"
    1.19 +  accesslog.filename = "/var/log/lighttpd/slish.in-access.log"
    1.20 +  index-file.names += ( "index.cgi" )
    1.21 +  cgi.assign = (
    1.22 +    ".cgi" => "/bin/sh"
    1.23 +  )
    1.24 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/mixer/rootfs/etc/slitaz/tazdev.conf	Wed Jan 29 23:04:11 2014 +0100
     2.3 @@ -0,0 +1,19 @@
     2.4 +# tazdev.conf: SliTaz Developers tool configuration file.
     2.5 +#
     2.6 +
     2.7 +# We may use main slitaz.conf in time.
     2.8 +SLITAZ_HOME="/home/slitaz"
     2.9 +
    2.10 +# Path to all own and copy projects.
    2.11 +PROJECTS="$SLITAZ_HOME/repos"
    2.12 +
    2.13 +# Path to archive
    2.14 +SOURCE=$SLITAZ_HOME/src
    2.15 +
    2.16 +# Packages to generate a minimal chroot.
    2.17 +CHROOT_PKGS="slitaz-base-files busybox cookutils tazpkg lzma"
    2.18 +
    2.19 +# Main mirror to push and download (ISO, rootfs. etc).
    2.20 +MIRROR="mirror.slitaz.org"
    2.21 +MIRROR_PKGS="/var/www/slitaz/mirror/packages"
    2.22 +MIRROR_SOURCES="/var/www/slitaz/mirror/sources"