abbe wrote:I host a family photo album and would like to store the entire website encrypted. Thus, if the box get stolen, a thief would not be able to watch all the personal pictures of friends and family.
This goes for both the Photo and Web system folder and the rest of the system folders as well.
I have tried to encrypt these, but it is apparently not an option. The button for encryption is greyed out. Could we please have this? I am aware I would get a performance penalty, but it would be so nice to have.
Are there any plans to develop this?
/abbe
I'm not party to Synology's plans, and agree that it would be nice to have the option to encrypt these 'special' folders.
One thing you could try, if you are comfortable with the unix command line. Create an encrypted folder called something like 'photox'. Then create a symbolic link under the 'photo' shared folder, which points to the encrypted folder. This may not be supported by Synology, and future firmware releases might break it, but it is worth a try.
Use the web interface to create a shared folder called 'photox' with encryption.
Do not automount it at startup - otherwise a potential thief will be able to read the data.
Login to the command line as root, and type the following...
- Code: Select all
cd /volume1/photo
ln -s /volume1/photox family
You will now see a folder underneath photo, called 'family'. Anything stored there will be encrypted.
I haven't tested this, as personally I don't use the photo album feature. But it's worth a try!
A nice touch is to unmount the encrypted folder, and then do 'touch /volume1/photox/this_folder_is_locked'. This creates a file in the directory which will be visible only when the encrypted folder is unmounted. That way, you'll never find the folder is empty and panic.
Please report back if this option works, as it might help others.
Steve