default
ca
cs
de
en
eo
es
fr
is
it
nb-no
pl
pt-br
ru
sv
zh-cn
a2c3.co
Login
Help
Apps
Search
Directory
Home
Community
Friendica
{2}
{3}
menu
View Profile
Fabio
4 months ago
@
FriendicAdmin
@
Friendica Developers
I should have a working HTTPS configuration on kirgroup.com (I've got a free SSL certificate from startssl)
How to redirect all http request to https?
@
friendicadmin
@
friendica developers
5 comments
show more
menu
View Profile
Jean Undef
4 months ago
Use mod_rewrite and in your virtualhost config sth like this:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*)
https://%
{HTTP_HOST}%{REQUEST_URI}
menu
View Profile
Jean Undef
4 months ago
... if you're using apache2 :)
menu
View Profile
Mr. X
4 months ago
Just set "force ssl" in the admin. Somebody can come in on http but they can't do anything else insecurely - all links from there on are https. This should also fix most of the links made when http was in effect.
1 comment
show more
menu
View Profile
Charles Roth
4 months ago from mustard.mod
Force SSL discards the theme and breaks the site for me (images missing, etc)
menu
View Profile
Fabio
4 months ago
Enabled "force ssl" option.
All ok at first check.
No problems with theme.
Thank you