Jump to content
Froxlor Forum
  • 0

Lighttpd und Debian 6


michael24179

Question

Ich habe von meinem Hoster gestern meinen neuen server gestellt bekommen. Die Hardware ist recht neu und Debian 5 machte Probleme bei der Installation. Da ein paar Techniker bei der entwicklung von Debian 6 mitwirken, meinte man, das es kein Problem sei, Debian 6 zu Installieren, da diese Version n?chsten Monat eh erscheint.

 

Ich habe nun Lighttpd installiert und Froxlor. Es gab hier keinerlei Probleme. Nachdem ich nun Froxlor Installiert habe und die Config f?r lighttpd eingerichtet habe, bekomme ich beim neustart von lighttpd ein Fehler

 

root@debian:~# /etc/init.d/lighttpd restart

cat: /etc/lighttpd/froxlor-diroptions/*.conf: No such file or directory

Stopping web server: lighttpd.

cat: /etc/lighttpd/froxlor-diroptions/*.conf: No such file or directory

Starting web server: lighttpdcat: /etc/lighttpd/froxlor-diroptions/*.conf: No such file or directory

 

das verzeichnis froxlor-diroptions wurde erstellt, jedoch ist es leer.

 

Hier meine lighttpd.conf

 

###############################################################################
# Default lighttpd.conf for Froxlor.
###############################################################################
var.basedir  = "/var/www"
var.logdir   = "/var/log/lighttpd"
var.statedir = "/var/lib/lighttpd"

server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_alias",
"mod_access",
"mod_auth",
"mod_fastcgi",
"mod_cgi",
"mod_accesslog"
)

server.username      = "www-data"
server.groupname     = "www-data"
server.document-root = var.basedir
server.pid-file      = "/var/run/lighttpd.pid"
accesslog.filename   = var.logdir + "/access.log"
server.errorlog      = var.logdir  + "/error.log"

server.indexfiles    = ("index.php", "index.html",
					"index.htm", "default.htm")

server.name			 = "debian"
server.port          = 80
server.bind          = "95.0.239.162"
url.access-deny = ("~", ".inc")

fastcgi.server = (
".php" => (
	"localhost" => (
		"socket" => "/tmp/lighttpd-fcgi-sock-lighttpd",
		"broken-scriptfilename" => "enable",
		"bin-path" => "/usr/bin/php5-cgi",
		"min-procs" => 1,
		"max-procs" => 1,
		"max-load-per-proc" => 4,
		"idle-timeout" => 60,
		"bin-environment" => (
			"UID" => "www-data",
			"GID" => "www-data",
			"PHP_FCGI_CHILDREN" => "0",
			"PHP_FCGI_MAX_REQUESTS" => "10000"
		),
		"bin-copy-environment" => ( "" )
	)
)
)

#### external configuration files
## mimetype mapping
include_shell "/usr/share/lighttpd/create-mime.assign.pl"

include_shell "cat /etc/lighttpd/conf-enabled/*.conf"

include_shell "cat /etc/lighttpd/froxlor-diroptions/*.conf"

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Leider geht es nicht

Eine meldung bekomme ich leider noch

 

Stopping web server: lighttpd.

cat: /etc/lighttpd/conf-enabled/*.conf: No such file or directory

Starting web server: lighttpdcat: /etc/lighttpd/conf-enabled/*.conf: No such file or directory

 

mein Ordner conf-enabled ist auch leer

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.



×
×
  • Create New...