Jump to content
  • 0
madlorence

FluxCP SSL Cert

Question

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.

 

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0
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
Link to comment
Share on other sites

  • 0
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
Link to comment
Share on other sites

  • 0
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

Link to comment
Share on other sites

  • 0
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
Link to comment
Share on other sites

  • 0
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
Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

  • 0
8 minutes ago, 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 may try this https://www.cloudways.com/blog/install-lamp-on-debian/

  • Upvote 1
Link to comment
Share on other sites

  • 0
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
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.