Hi, On Sun, Dec 28, 2014 at 10:41:01AM +0100, Clemens Goessnitzer wrote: > I installed the owncloud server from ports, and tried to get it running with > the new httpd. Unfortunately, I get a "500 Internal Server Error" once I log > in. However, the login page is shown perfectly fine. > > Here is the server log, when I run the server in debug/verbose mode without > demonizing: > > default 192.168.178.18 - - [28/Dec/2014:10:29:52 +0100] "GET > /owncloud/index.php/apps/files/ HTTP/1.1" 500 0 > server default, client 5 (1 active), 192.168.178.18:49545 -> 192.168.178.49, > /owncloud/index.php/apps/files/ (500 Internal Server Error) > > IMHO, neither the server error log nor the owncloud log provide any evidence > to locate the error. Since I am not a developer, I would appreciate any help > you could give me to solve this error. > > The owncloud installation is standard, using /owncloud-data as data > directory, and sqlite3 as database. I installed owncloud by directly > downloading it from owncloud.org; however, the error remainded unchanged. > > Thanks in advance, > Clemens >
OK, I tested ownCloud with httpd and it works fine. I tested it with -current/5.7-beta but 5.6-stable might work with some limitations (without the /owncloud path). So httpd is ready for owncloud - liars ;-) I quickly wrote down some steps here: https://github.com/reyk/httpd/wiki/Running-ownCloud-with-httpd-on-OpenBSD This is enough to get it running, but only lightly tested and maybe with some flaws. We can get it in the pkg-readme for owncloud later. I have to admit that it could be easier with some more flexibility in httpd. But it works. For reference, here is my example configuration: ---snip--- server "myowncloud.example.com" { listen on * port 80 listen on * tls port 443 # Set max upload size to 513M (in bytes) connection max request body 537919488 root "/owncloud" # First deny access to the specified files # (as a workaround, run 'mkdir -p 0 /var/www/forbidden' first) location "*/db_structure.xml" { root "/forbidden" } location "*/.ht*" { root "/forbidden" } location "*/README" { root "/forbidden" } location "*/data" { root "/forbidden" } location "*/config" { root "/forbidden" } # If it is accessed as /owncloud location "/owncloud/*.php*" { root { "/owncloud", strip 1 } fastcgi socket "/run/php-fpm.sock" } location "/owncloud/*" { root { "/owncloud", strip 1 } } # Any other PHP file location "/*.php*" { fastcgi socket "/run/php-fpm.sock" } # # XXX The following configuration from the nginx examples are # XXX currently not supported in httpd(8). # # No WebFinger possible #rewrite ^/.well-known/host-meta /public.php?service=host-meta last; #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last; #rewrite ^/.well-known/carddav /remote.php/carddav/ redirect; #rewrite ^/.well-known/caldav /remote.php/caldav/ redirect; # What does this mean? #rewrite ^(/core/doc/[^\/]+/)$ $1/index.html; # No (optional) EXPIRES headers in httpd #location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ { # expires 30d; # # Optional: Don't log access to assets # access_log off; #} # Custom error pages are currently not supported #error_page 403 /core/templates/403.php; #error_page 404 /core/templates/404.php; } ---snap--- Reyk