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: configure subdomain owncloud |
|
Author |
|
tchokapix
Joined: 14 Feb 2016 Posts: 3 Location: France
|
Posted: Fri 28 Oct '16 1:28 Post subject: configure subdomain owncloud |
|
|
My post is quite similar to this one.
Owncloud 9.1.1-1.2
apache 2.4.10-10+deb8u7
debian 8
mariadb 10.0.27+maria-1~jessie
php 5.6.27+dfsg-0+deb8u1
I tried to combine the instructions from the official documentation and from this topic.
The installation wizard does not appear on cloud.domain.ltd. I have the default page from the hosting company of my dedicated server.
Code: |
<Virtual Host *:80>
ServerAdmin webmaster@cloud.domain.ltd
ServerName cloud.domain.ltd
DirectoryIndex index.html index.php
DocumentRoot /var/www/cloud.domain.ltd/owncloud
Alias /owncloud "/var/www/cloud.domain.ltd/owncloud/"
<Directory /var/www/cloud.domain.ltd/owncloud/>
Options +FollowSymlinks
AllowOverride All
<IfModule mod_dav.c>
Dav off
</IfModule>
SetEnv HOME /var/cloud.domain.ltd/www/owncloud
SetEnv HTTP_HOME /var/www/cloud.domain.ltd/owncloud
</Directory>
ErrorLog /var/www/cloud.domain.ltd/logs/error.log
CustomLog /var/www/cloud.domain.ltd/logs/access.log combined
</VirtualHost> |
So What to modify to get the installation wizard on cloud.domain.ltd?
I am a little bit confused because in this topic, the conf file is in mod and not in site. In the documentation, the conf file for owncloud is in site (a2ensite and a2dissite). |
|
Back to top |
|
|
|
|
|
|