Topic: ssl installation

Hi Friends

I am using front accounting on my web server, is there any way to confirgure ssl in front accounting?

please guide asap

thanks

Re: ssl installation

That must be configured in your WebServer config like in apache conf file. It has nothing to do with FA.

Re: ssl installation

ok, how i can configure my webserver in order to use ssl with FA??

Re: ssl installation

apmuthu wrote:

That must be configured in your WebServer config like in apache conf file. It has nothing to do with FA.

its already configured, i am using my ssl on my main website like example.com with wordpress without any problem but i made FA with subdomain like FA.example.com now when i try it with https its opening but whole program layout messed up but when i open it with http its opening correctly. please guide me how i can configure https on FA.example.com ?? i have wildcard ssl. how i can configure ssl somewhere in FA??

please guide somebody asap

thanks

Re: ssl installation

You will need a separate virtual host config stanza for it in the apache conf file with it's own ssl keys.
Otherwise you will have to access your FA as a subfolder of the main url and not as a subdomain.

Re: ssl installation

apmuthu wrote:

You will need a separate virtual host config stanza for it in the apache conf file with it's own ssl keys.
Otherwise you will have to access your FA as a subfolder of the main url and not as a subdomain.

please guide me how i config separate virtual host in my apache conf file in my hosting?

Re: ssl installation

Adjust Apache conf files in all VPS/KVMs:
* For Wheezy/Squeeze and earlier - http://httpd.apache.org/docs/2.2/ssl/ssl_howto.html
* For Jessie and later - http://httpd.apache.org/docs/2.4/ssl/ssl_howto.html
* General - https://wiki.mozilla.org/Security/Server_Side_TLS

Re: ssl installation

Hi Zubair,

Try this:

http://www.besthostratings.com/articles/force-ssl-htaccess.html

WebArchive

Sometimes you may need to make sure that the user is browsing your site over securte connection. An easy to way to always redirect the user to secure connection (https://) can be accomplished with a .htaccess file containing the following lines:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

Please, note that the .htaccess should be located in the web site main folder.

In case you wish to force HTTPS for a particular folder you can use:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} somefolder
RewriteRule ^(.*)$ https://www.domain.com/somefolder/$1 [R,L]

The .htaccess file should be placed in the folder where you need to force HTTPS.

Regards,

Peter