• 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

sharplr.com

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