• 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

Browse Remote Storage

Barry

💖 Chevereto Fan
So I finally got around to trying the remote storage with a secondary SFTP server as bulk storage. Perhaps I am missing something basic here.

Images upload and transfer to SFTP without issue. However, if I look at the path that image is served from I can then use that base URL to browse to ALL the images on that remote server...

Here is the flow.

Image is uploaded to clubwallpapers.com then transferred to storage.clubwallpapers.com

I browse said image at
http://storage.clubwallpapers.com/2016/10/23/MassiveHDWallpapaerDump1080p_122-dNzxHhi.md.jpg

From there, I can deduce that images are served from
http://storage.clubwallpapers.com/2016/10/23/

If I hit that URL, I can see all images (that were uploaded today). How do I stop people from browsing this page?
 
Chevereto doesn't touch that server at all regarding in how it serve those files. You only need to disallow those listings depending if you are using Apache or Nginx.

It is a somethings very simple, in Apache is an .htaccess file with the the following:
Code:
Options -Indexes


In Nginx is the following directive:
Code:
location / {
    autoindex off;
}
 
Last edited:
Go to the root folder and create a file called .htaccess and add Options -Indexes
Thanks - created an .htaccess file at the root of the webserver and added Options -Indexes.

I can still browse the contents.
 
I can still browse the contents.

When that happens is usually because:

1. The virtualhost directive is either overriding or ignoring your .htaccess directives
2. Your .htaccess file has wrong permission mask or it isn't a valid .htaccess file

In some cases that directive could be in conflict with some cPanel indexing rules. Anyway, this is something that you should check with your hosting company. Like I said, is a totally common thing and maybe they just need an additional or even a different process to achieve it.
 
Back
Top