• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

[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