• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

[SSL-Guide] https via VirtualHost

Avast

👽 Chevereto Freak
This guide requires access to your v-hosts on your root!

If you want to set up a ssl-certificate you have to change and add some things to your v-hosts-file.

1. You have to change the typical first line:
Code:
<VirtualHost *:80>

to:
Code:
<VirtualHost *:443>

Now your apache know, that you're using ssl.

2. The apache has to know, where the ssl-files are.
Add this lines:
Code:
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/ssl.crt  #Path to your .crt file
SSLCertificateKeyFile /etc/apache2/ssl/ssl.key #Path to your .key file
ServerSignature On


Your final v-host-file could look like this:
Code:
<VirtualHost *:443>
ServerAdmin postmaster@yoursite.com
 
ServerName yoursite.com
ServerAlias www.yoursite.com
DocumentRoot /home/public_html/www/yoursite
 
<Directory /home/public_html/www/yoursite>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/yoursite_error.log
LogLevel warn
CustomLog /var/log/apache2/yoursite_access.log combined
 
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/ssl.crt
SSLCertificateKeyFile /etc/apache2/ssl/ssl.key
ServerSignature On
 
</VirtualHost>



Now every http request will be changed to a https-request 😉
 
Back
Top