tiramiseb a écritTu as activé, à un moment ou à un autre, le chiffrement SSL (protocole HTTPS), du coup Apache essaie d'écouter sur le port 443 (où Lighttpd écoute également déjà).
Il faut soit choisir un autre port, soit désactiver le SSL
bon ca c'est fait ...
ensuite le lighttpd ... désactivé ...
c'est une chose que j'avais activé lors de l'installation de funplug ..
tiramiseb a écritPour ton fichier de configuration de l'hôte virtuel par défaut :
<VirtualHost *:8888>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/owncloud
ServerName localhost
<Directory />
Options FollowSymLinks
Allowoverride none
</Directory>
<Directory /var/www/owncloud>
Options Indexes FollowSymLinks MultiViews
Allowoverride none
Order allow,deny
allow from all
</Directory>
c est fait également ...
mais .. il y a toujours un mais ..
le message lors du restart me donne cela :
root@DNS-320-MrLo:~# sudo service apache2 restart
apache2: Syntax error on line 230 of /etc/apache2/apache2.conf:
Syntax error on line 1 of /etc/apache2/sites-enabled/000-default:
/etc/apache2/sites-enabled/000-default:1: <VirtualHost> was not closed.
Action 'configtest' failed.
The Apache error log may have more information.
failed!
root@DNS-320-MrLo:~#
voila mon fichier apache2.conf (la fin du fichier ...)
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.
# Include generic snippets of statements
Include conf.d/
# Include the virtual host configurations:
Include sites-enabled/
NameVirtualHost *:8888
NameVirtualHost *:4271
en ce qui concerne le fichier /etc/apache2/sites-enabled/000-default
en voici le contenu ...
<VirtualHost *:8888>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/owncloud
ServerName localhost
<Directory />
Options FollowSymLinks
Allowoverride none
</Directory>
<Directory /var/www/owncloud>
Options Indexes FollowSymLinks MultiViews
Allowoverride none
Order allow,deny
allow from all
</Directory>