It will be nice if you guys could support the use of SSL for FOG. I set up SSL on my server (Apache 2.2) and with my own certificates, and its working great with other intranet sites I have, but FOG is just unable to work with it, it seems it tries to force the use of plain http. I set up my configuration with a virtual host pointing to the FOG root folder in my server at /var/www/html/fog/ and set the SSLRequireSSL option to force FOG to reject none ssl connections but it fails, basically once you enable ssl for fog you break it, I had to disable it in order for it to work properly, could you support SSL on a future version? It will be a great feature offering enchanced security for a truly enterprise app.
Thx
I've got the same problem.. I'm currently testing which urls should be available without SSL.
My apache vhost for http has the following lines - but it is not yet complete:
RewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTPS} ^off$
RewriteCond %{REQUEST_URI} !^/fog/status/
RewriteCond %{REQUEST_URI} !^/fog/wol/
RewriteCond %{REQUEST_URI} !^/fog/service/
RewriteCond %{REQUEST_URI} !^/fog/management/css/
RewriteRule ^/(.*)$ https://%\{HTTP_HOST}/$1 [R=301,L]