!!! Apache
! Configurazione
apache2.conf aggiungere :
%%prettify 
{{{
# forbid access to the entire filesystem by default
<Directory />
    Options None
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

# List of resources to look for when the client requests a directory
DirectoryIndex index.htm index.html index.jsp Index.jsp home.jsp Home.jsp index.php Index.php Wiki.jsp wiki.jsp
}}}
/%


! accesso sicuro SSL
abilitare modulo ssl con il comando  
%%prettify 
{{{
# a2enmod ssl
}}}
/%