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.
Asked
Active
Viewed 6,912 times
1

DK Bose
- 42,548
- 23
- 127
- 221

Haider Yaqoob
- 255
- 1
- 4
- 7
-
Are you using 14.04? If not, please use the appropriate tag for the version you're using. If you're using 14.04, note that 14.04 is no longer supported here but support is available commercially from Canonical. See https://ubuntu.com/blog/ubuntu-14-04-esm-support for details. – DK Bose Nov 28 '19 at 16:20
-
I think this topic could be interesting for you, there is described how to generate and apply free SSL/TLS certificate: https://askubuntu.com/q/900400/566421 – pa4080 Nov 28 '19 at 16:39
1 Answers
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
- 34,259

Алексей Востриков
- 121
- 8
-
1Добро пожаловать в Ask Ubuntu! :-) Please put the commands users have to execute first also as the first command they have to execute... ;-) – Fabby Nov 28 '19 at 13:45