I have set up a fresh Debian 10.7 and installed Dokuwiki like described on the Dokuwiki-Homepage with...
apt-get install dokuwiki
I could not find the file
/etc/apache2/sites-available/default
After searching for that issue I found the information that the file "default" is not used anymore. So I put the entry
<Directory /usr/share/dokuwiki/>
Options FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
</Directory>
into the the
/etc/apache2/apache2.conf
My problem now is when I call the address
http://[server]/dokuwiki
I get the following error:
Forbidden
You don't have permission to access this resource.
The Errorlog of Apache2 shows:
[access_compat:error] AH01797: client denied by server configuration: /usr/share/dokuwiki/
Has anybody an idea how to solve my problem?