Jump to content
  • 0

Question

Posted

Hi there! Do you guys have any idea on how to add SSL cert on fluxcp? I used a domain from godaddy.com. 

I tried the following:
https://www.sslforfree.com/ I did all of the instructions written from this site but i can't seem to make it work, you guys have any suggestions or advices for SSL cert on my fluxcp? 

Thank you so much in advance.

 

11 answers to this question

Recommended Posts

  • 0
Posted
41 minutes ago, madlorence said:

Hi there! Do you guys have any idea on how to add SSL cert on fluxcp? I used a domain from godaddy.com. 

I tried the following:
https://www.sslforfree.com/ I did all of the instructions written from this site but i can't seem to make it work, you guys have any suggestions or advices for SSL cert on my fluxcp? 

Thank you so much in advance.

 

to fix this issue you must contact godaddy support they will fix it for you.

  • Upvote 1
  • 0
Posted
2 hours ago, madlorence said:

Hi there! Do you guys have any idea on how to add SSL cert on fluxcp? I used a domain from godaddy.com. 

I tried the following:
https://www.sslforfree.com/ I did all of the instructions written from this site but i can't seem to make it work, you guys have any suggestions or advices for SSL cert on my fluxcp? 

Thank you so much in advance.

 

Its better to use Lets Ecrypt follow this instruction on Youtube

  • Upvote 1
  • 0
Posted
57 minutes ago, Zack- said:

Its better to use Lets Ecrypt follow this instruction on Youtube

Thanks for this @zack-

I have question, I am using a VPS  as well to host my fluxcp, do you have any idea where is my public_html folder is? I can't seem to find it. 

Btw I tried created a .well-known folder here but it's not working. 
image.png.270defec1a04b8b2cc96cad5a250f0f1.png

  • 0
Posted (edited)
2 hours ago, madlorence said:

 Update:

@Zack- I got it working!! ? I also got the keys but i am not sure where to upload the certificates, is it on my godaddy? or on fluxCP? Thank you!

Open your folder option, uncheck the, Click the Show hidden files, folders. and drive then login your webhost using winscp or any ftp software, and follow the let's ecrypt instruction if you dont see any hidden folder/files in your webhost, just make one as the lets ecrypt instruction

image.png.18abf3393b8e11c40634c1502616c3ab.png

 

 

 

Edited by Zack-
  • Love 1
  • 0
Posted
2 hours ago, madlorence said:

Thanks for this @zack-

I have question, I am using a VPS  as well to host my fluxcp, do you have any idea where is my public_html folder is? I can't seem to find it. 

Btw I tried created a .well-known folder here but it's not working. 
image.png.270defec1a04b8b2cc96cad5a250f0f1.png

If you use vps apche thats your public_html in your screenshot

  • Love 1
  • 0
Posted
7 minutes ago, Zack- said:

If you use vps apche thats your public_html in your screenshot

I already got my ssl cert(keys and stuffs), do you have any idea how can I install it on my apache debian?

  • 0
Posted
On 1/21/2020 at 10:45 AM, madlorence said:

I already got my ssl cert(keys and stuffs), do you have any idea how can I install it on my apache debian?

You need to install a lets encrypt certbot. You can search in google, for example:

https://linuxhostsupport.com/blog/install-lets-encrypt-ssl-certificates-using-certbot/

You maybe will also need to force https in your cp for all requests made. To do it you will need to change your .htaccess to this

#FORCE HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(js|ico|gif|jpg|png|css|pdf|swf|flv)$ index.php [QSA]

Note that if you do this, you also will need to enable to use clean urls. Enable it in application.php

'UseCleanUrls'				=> true,					// Set to true if you're running Apache and it supports mod_rewrite and .htaccess files.

 

  • Upvote 1
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...