Access HDA over SSL

From Amahi Wiki
Revision as of 07:43, 6 August 2011 by Sag47 (talk | contribs) (Modified all the commands so that it is more copy/paste friendly for apache configurations. Added troubleshooting tips. Spelling corrections etc.)
Jump to: navigation, search
Warning.png WARNING
This is recommended only for advanced users, proceed with caution.


Here I will discuss accessing your Amahi HDA over SSL. This means that you will go to your home page http://hda and it will automatically convert to https://hda.

Why is this recommended?

Currently you access your Amahi HDA control panel unsecured. This means that anyone sniffing your network can get the password to your HDA. If your password is compromised then this means they can log in to possibly modify your shares or even access SSH (if you have it enabled). So I recommend anyone using SSH to at least have SSL access to their Amahi HDA.

Sag47 00:38, 15 June 2011 (PDT)

Prerequisites

I assume you already have Fedora 14 installed with Amahi up and running.

I have ran through the instructions here on Fedora 12 and everything works.

Guerilla 13:31, 16 June 2011 (GMT)

Instructions

Back up apache configurations

Before doing anything be sure to back up your apache configurations!

bash code
​'"`UNIQ--pre-00000000-QINU`"'​


This way if you accidentally screw something up we can start over.

Install mod_ssl

mod_ssl for Apache2 is required for this functionality. Luckily Fedora makes it easy.

bash code
​'"`UNIQ--pre-00000002-QINU`"'​


Generate your own certificates

NOTE: Leaving defaults will not make your server less secure. Make sure that you change "asecretpassword" in the commands below to something else. Otherwise any commands which don't have "asecretpassword" in it can be copied and pasted. This has to do with the challenge password for the private key. If you don't understand what I mean then you should read about public-key cryptography which is essentially what SSL uses.

bash code
​ '"`UNIQ--pre-00000004-QINU`"'​


Modify apache initialization

Modify the apache initialization for allowing SSL virtual hosts. Just in case you decide you want more than one virtual host to be capable of SSL.

bash code
​'"`UNIQ--pre-00000006-QINU`"'​


Create your HDA SSL virtual host

Now you need your HDA virtual host over SSL. The default configuration is pretty good so let's use that.

bash code
​'"`UNIQ--pre-00000008-QINU`"'​

You need to modify 01-platform-ssl.conf and replace the line with "<VirtualHost *:80>" to the following lines...

Text
​ '"`UNIQ--pre-0000000A-QINU`"' ​

Leave the rest of the file intact as you found it. This way the server utilizes the SSL certificates you created for yourself.

Create a redirect from HDA to secured HDA

Modify /etc/httpd/conf.d/01-platform.conf and go down to the rewrite rules. Below the last rewrite rule just before the line "# this was only for FCGI" put the following code.

Text
​ '"`UNIQ--pre-0000000C-QINU`"' ​

Restart the Apache2 server

Restart your server to apply the changes you've made. If you did everything right you shouldn't receive any warnings when restarting the server.

bash code
​service httpd restart​


Finished

Now that you're done go ahead and visit http://hda and watch it turn into https://hda! Understand that the certificates you generated have not been verified by a certificate authority so you'll need to confirm a security exception.

Troubleshooting

Apache error

If you get an error when you restart Apache (httpd) about a bad configuration then it is probably because you directly copied and pasted from this wiki. When you copy the code then sometimes a null character is also copied which is hidden to most text editors.

A way to solve this is to delete and retype the first an last character of each line which Apache is complaining about. You can then test your configuration again.

bash code
​'"`UNIQ--pre-0000000F-QINU`"'​


If all goes well and you get "Syntax OK" then you can start your Apache server again.

bash code
​'"`UNIQ--pre-00000011-QINU`"'​


If all things end badly and you can't figure it out then it is possible to restart this tutorial from scratch. Just start it over.

How do I start over?

Run the following command sequence.

bash code
​ '"`UNIQ--pre-00000013-QINU`"' ​

Then you can start the instructions again from step one.

See also

Secure App Access
Access Joomla over HTTPS