1

Twiki is running locally on my web server apache2. I used a2enmod ssl to enable SSL (Secure Socket Layer). Now i want to see SSL is enabled or not ? Or i need more configurations to achieve task (i-e) to enable SSL.

DK Bose
  • 44,553

1 Answers1

4

In case you haven't already done so, do a:

service apache2 restart

after the a2enmod ssl you just did.

Then, you use the following command to test SSL:

curl -vk https://localhost/ -o /dev/null
Fabby
  • 35,017