-
Dear community I am struggling with getting the sympa web service into production and hopefully someone can help me on this. [autoindex:error] AH01276: Cannot serve directory /usr/share/sympa/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xhtml,index.htm) found, and server-generated directory index forbidden by Options directive My Environment: When I enable "Options Indexes" on the .conf, I can see the content of /usr/share/sympa/ on the webinterface. The error clearly states a missing index and I didn't find out which file it should be. I have a feeling, that my /usr/share/sympa/ is uncomplete:
With the help of the sympa.community documantation I used...
The services and sockets (apache2, sympa, wwsympa) are all running active without errors. Below you find the most important config files. Please note, that I..
/etc/sympa/sympa/sympa.conf
/etc/apache2/sites-enabled/VM1234.abc.local.conf
/etc/apache2/conf-enabled/sympa.conf
/etc/apache2/apache2.conf
/lib/systemd/system/wwsympa.socket
/lib/systemd/system/wwsympa.service
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Not everything under /usr/share/sympa should be accessible from the Internet. If you want to set up On Debian, running |
Beta Was this translation helpful? Give feedback.
Not everything under /usr/share/sympa should be accessible from the Internet. If you want to set up
DocumentRoot
, use a directory that has nothing to do with Sympa at all.On Debian, running
a2ensite 000-default
(ora2ensite default-ssl
for HTTPS site) will setDocumentRoot
to/var/www/html
. The additional filesites-enabled/VM1234.abc.local.conf
is not necessarily needed. (Incidentally, the intended …