• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Question Let's Encrypt private_key and path to certificate for phpFox IM module

Mathias

Basic Pleskian
Hello,

I am trying to get the Instant Messenger running with phpFox social network software, but I don't exactly know how to do this. Here is the instruction to set up the server with Redis and NodeJS:

Server Setup for IM Module - phpFox 4 User Manual - phpFox Documentation

They tell to install Redis and NodeJS with SSH, but I don't know the path to the private_key and certificate from Let's Encrypt for my domain. Someone in the phpFox Forum said, I should search the Apache config file to find the paths. Is that true?

Is there another way to install Redis and NodeJS? I know they come along in an extension with Plesk, but I don't know how to install and configure for the IM module.

I am using Plesk Onyx 17.8.11 latest update on a CentOS Linux Server Core 7.6.

Thanks for any help.

Greetings,
Mathias
 
but I don't know the path to the private_key and certificate from Let's Encrypt for my domain

# grep certificate /var/www/vhosts/system/yourdomain.com/conf/nginx.conf
ssl_certificate /usr/local/psa/var/certificates/scfj5PeiM;
ssl_certificate_key /usr/local/psa/var/certificates/scfj5PeiM;
ssl_client_certificate /usr/local/psa/var/certificates/scfpBO9JV;

Redis server installlation guide - Instruction - How to install latest Redis server
NodeJs:
Screenshot 2019-02-14 at 10.56.50.png
 
# grep certificate /var/www/vhosts/system/yourdomain.com/conf/nginx.conf
ssl_certificate /usr/local/psa/var/certificates/scfj5PeiM;
ssl_certificate_key /usr/local/psa/var/certificates/scfj5PeiM;
ssl_client_certificate /usr/local/psa/var/certificates/scfpBO9JV;

Does the grep command work also for apache only? I disabled nginx, use apache only.
 
Does the grep command work also for apache only? I disabled nginx, use apache only.
in this case, just grep Apache config file /var/www/vhosts/system/yourdomain.com/conf/httpd.conf
 
Back
Top