Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: apache/owncloud down after upgrade owncloud and debiandistri |
|
Author |
|
dave326
Joined: 02 Apr 2016 Posts: 2
|
Posted: Sat 02 Apr '16 17:49 Post subject: apache/owncloud down after upgrade owncloud and debiandistri |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 04 Apr '16 12:02 Post subject: |
|
|
Your apache version? Your Linux distro? |
|
Back to top |
|
dave326
Joined: 02 Apr 2016 Posts: 2
|
Posted: Mon 04 Apr '16 21:04 Post subject: |
|
|
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: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 04 Apr '16 21:20 Post subject: |
|
|
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
if you still have a question please ask again. |
|
Back to top |
|
|
|
|
|
|