I used to have lighttpd working. I've made a bunch of changes since then, but now I'm having issues that I believe are related to server rights
Here is the error message I'm finding in the log
$this->bbcode_second_pass_code('', '
012-11-25 22:44:14: (log.c.118) opening errorlog '/var/log/lighttpd/error.log' failed: Perm$
lighttpd-angel.c.139: child (pid=472) exited normally with exitcode: 255
')
Here are the rights for the directory in question
$this->bbcode_second_pass_code('', '
[root@Arch Linux ARM install lighttpd]# ls -l
total 8
-rw-r--r-- 1 www root 2 Nov 25 14:48 error.log
-rw-r--r-- 1 www root 358 Nov 25 14:47 lighttpd-angel.log
')
Here is my lighttpd.conf file
$this->bbcode_second_pass_code('', '
# This is a minimal example config
# See /usr/share/doc/lighttpd
# and http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ConfigurationOptions
server.port = 80
server.username = "www"
server.groupname = "www"
server.document-root = "/srv/http"
server.errorlog = "/var/log/lighttpd/error.log"
dir-listing.activate = "enable"
index-file.names = ( "index.html" )
mimetype.assign = ( ".html" => "text/html", ".txt" => "text/plain", ".jpg" => "image$
')
I've used http as a user and group deleted and readded, now I've switched to the www user.
I've tried apache, but it gives me a forbidden 403 error, so I think there is something systemic going on. Any suggestions?
Thanks
Tom