Enable SSL in apache2 on Debian Etch
Note quick tutorial # Enable ssl a2enmod ssl # Edit /etc/apache2/ports.conf and add “Listen 443” # Generate certs: use your domain as Common Name or… Read More »Enable SSL in apache2 on Debian Etch
Note quick tutorial # Enable ssl a2enmod ssl # Edit /etc/apache2/ports.conf and add “Listen 443” # Generate certs: use your domain as Common Name or… Read More »Enable SSL in apache2 on Debian Etch
server { server_name mysite.tld ~^.+.mysite.tld$; map $host $files { default common; mysite.tld common; www.mysite.tld common; admin.mysite.tld admin; system.mysite.tld system; *.mysite.tld users; } root /var/www/mysite/$files; }