logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: apache/owncloud down after upgrade owncloud and debiandistri
Author
dave326



Joined: 02 Apr 2016
Posts: 2

PostPosted: Sat 02 Apr '16 17:49    Post subject: apache/owncloud down after upgrade owncloud and debiandistri Reply with quote

Hello,

After my last update i'm unable to contact owncloud through the webinterface.

Posted my questions on the owncloud forum but the send me to this apache forum because they think its no owncloud problem.

Here a part of my config/problem

Webinterface Chrome/Firefox:
https://192.168.1.70/ shows (It works! This is the default web page for this server.The web server software is running but no content has been added, yet.)

https://192.168.1.70/owncloud/ shows the index ( Index of /owncloud )

i see the content of the users in owncloud when i check /var/www/owncloud/data

.htacces (/var/www/owncloud/data)
deny from all
IndexIgnore *

/etc/apache2/sites-enabled
NameVirtualHost *:80
NameVirtualHost *:443

<VirtualHost *:80>
UseCanonicalName Off
ServerAdmin webmaster@localhost
DocumentRoot /var/www/owncloud/
</VirtualHost>

<VirtualHost *:443>
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/owncloud.pem
SSLCertificateKeyFile /etc/apache2/ssl/owncloud.key
DocumentRoot /var/www/owncloud/
</VirtualHost>
Alias /owncloud "/var/www/owncloud"
<Directory /var/www/owncloud/>
Options +FollowSymLinks
AllowOverride All
order allow,deny
allow from all
</Directory>

Is there some misconfig ?
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7298
Location: Germany, Next to Hamburg

PostPosted: Mon 04 Apr '16 12:02    Post subject: Reply with quote

Your apache version? Your Linux distro?
Back to top
dave326



Joined: 02 Apr 2016
Posts: 2

PostPosted: Mon 04 Apr '16 21:04    Post subject: Reply with quote

Debian GNU/Linux 8 \n \l (jessie)

Server version: Apache/2.4.10 (Debian)
Server built: Nov 28 2015 14:05:48
Server's Module Magic Number: 20120211:37
Server loaded: APR 1.5.1, APR-UTIL 1.5.4
Compiled using: APR 1.5.1, APR-UTIL 1.5.4
Architecture: 64-bit
Server MPM: prefork
threaded: no
forked: yes (variable process count)
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7298
Location: Germany, Next to Hamburg

PostPosted: Mon 04 Apr '16 21:20    Post subject: Reply with quote

The issue is the Order Allow,Deny ... allow from part.
Apache 2.4 has a different Syntax for the permissions.
Allow from All is now Require All granted
and Deny from Allw is now Require All denied

The Order * does not longer exist. You need to change that in the vhost and in all .htaccess files to get it working.

There are some topics about that in the forum. Just use the search Wink

if you still have a question please ask again.
Back to top


Reply to topic   Topic: apache/owncloud down after upgrade owncloud and debiandistri View previous topic :: View next topic
Post new topic   Forum Index -> Apache