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

ronaldst

Chevereto Member
I've been running this site as hobby project for about a year now. More or less default Chevereto. Running on a very stable and fast host located in EU and I welcome any user who find image sharing useful.

https://sharplr.com
 
I've been running this site as hobby project for about a year now. More or less default Chevereto. Running on a very stable and fast host located in EU and I welcome any user who find image sharing useful.

https://sharplr.com

looks great, I need to switch my site from http:// to https:// is this move hard ?

thank you
 
I need to switch my site from http:// to https:// is this move hard ?
Not at all. Just get a SSL cert, install it, then redirect all traffic to https (server rule) and done.
 
Once you got the SSL certificate set up you can try redirect traffic to https by adding this to your .htaccess.

Please if any .htaccess experts are around and know a better way please let us know!

I've always been running with SSL so I'm not aware if there are any issues when moving the site from one protocol to another. Try it out and see how goes!

Code:
# START SSL
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteRule .? https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# END SSL
 
https works great

The following has been added to your .htaccess file:

<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header always set Content-Security-Policy: upgrade-insecure-requests
</IfModule>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^soay \.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://soay .com/$1 [R,L]

thanks guys
soay
 
Back
Top