bonjour
Sur un serveur auto-hébergé, sous debian buster:
forbidden
You don't have permission to access this resource.
Apache/2.4.38 (Debian) Server at funambule.org Port 443
j'ai parfois des problèmes d’accès à mon serveur (qui pourtant n'est pas loin, dans mon garage à 6 mètres de mon bureau).
ça m'arrive sur le nextcloud avec collabora, mais aussi avec le diaporama sfpg installé hier, j'ai aussi ce problème avec un site spip, que j'ai supprimé momentanément..
le problème est aléatoire, et je vois pas la raison.
je livre ici même les fichiers qui pourraient posé ceci:
je me demande si dans le .htaccess le "DirectoryIndex accueil-funambule.html" n'est pas en contradiction avec le vhost affiché plus bas, ceci dit, j'ai essayé de le renommé en htaccess.txt et ça n'a rien changé
///////////////////
/var/www/html$ cat .htaccess
DirectoryIndex accueil-funambule.html
Redirect permanent /
https://funambule.org//////////////////////
cat /etc/hosts
127.0.0.1 localhost
127.0.1.1 lebug.home lebug
127.0.0.1 localhost/nextcloud
/////////////////////
le premier vhost pour redirigé:
cat /etc/apache2/sites-available/nextcloud.conf
<VirtualHost *:80>
ServerName funambule.org
ServerAlias
www.funambule.org ServerAlias netdata
RedirectMatch ^(.*)$
https://funambule.org/$1</VirtualHost>
/////////////////////
cat /etc/apache2/sites-available/nextcloud-ssl.conf
<VirtualHost *:443>
ServerAdmin lagrenouille@localhost
ServerName funambule.org
ServerAlias
www.funambule.org ServerAlias cumulus
TimeOut 6000
<IfModule mod_ssl.c>
SSLEngine on
SSLCertificateFile /var/lib/dehydrated/certs/funambule.org/fullchain.pem
SSLCertificateKeyFile /var/lib/dehydrated/certs/funambule.org/privkey.pem
</IfModule>
DocumentRoot /var/www/html/funambule/
<Directory /var/www/html/funambule/>
Require all granted
</Directory>
ProxyRequests Off
ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto "https"
ProxyPass /lufi/upload ws://localhost:8081/lufi/upload
ProxyPassReverse /lufi/upload ws://localhost:8081/lufi/upload
ProxyPass /lufi/download/ ws://localhost:8081/lufi/download/
ProxyPassReverse /lufi/download/ ws://localhost:8081/lufi/download/
ProxyPass /lufi/ http://localhost:8081/lufi/
ProxyPassReverse /lufi/ http://localhost:8081/lufi/
Alias /nextcloud /var/www/html/nextcloud
<Directory /var/www/html/nextcloud/>
Options +FollowSymLinks
AllowOverride all
Require all granted
<IfModule mod_dav.c>
Dav off
</IfModule>
SetEnv HOME /var/www/html/nextcloud/
SetEnv HTTP_HOME /var/www/html/nextcloud/
</Directory>
Alias /privatebin /var/www/html/privatebin/
<Directory /var/www/html/privatebin/>
Options +FollowSymLinks
AllowOverride all
Require all granted
</Directory>
Alias /compta /var/www/html/compta/dolibarr/htdocs/
<Directory /var/www/html/compta/dolibarr/htdocs/>
Options +FollowSymLinks
AllowOverride all
Require all granted
</Directory>
Alias /diaporama /var/www/html/funambule/diaporama/
<Directory /var/www/html/funambule/diaporama/>
Options +FollowSymLinks
AllowOverride all
Require all granted
</Directory>
ErrorLog /var/log/apache2/nextcloud/error.log
LogLevel warn
CustomLog /var/log/apache2/nextcloud/access.log combined
<ifModule mod_rewrite.c>
RewriteEngine On
</ifModule>
</VirtualHost>
/////////////////////////////////////////////
Voyez vous quelque chose qui cloche ? merci de vos conseils
Dernière modification par lagrenouille (06-06-2020 16:48:42)