RainLoop data folder is accessible

  • Hallo Zusammen,


    ich habe ein Webhosting Paket 2000 und habe hier Rainloop installiert (danke euch noch mals).

    Nun wird mir der Hinweis "RainLoop data folder is accessible" angezeigt.

    In der Doku steht ich soll den Folder "sperren". Ist mir das überhauot möglich mit meinem Webhosting Paket? Und wenn ja, kann mir jemand weiterhelfen? :)


    Danke euch


    ------------------

    All configuration files of the application, as well as temporary ones (attachments, logs, etc.) are stored in data directory, so it's important to make sure that users cannot access that directory over the Internet directly.

    Application uses .htaccess for basic protection but it might not work if you're using a web server other than Apache, and even Apache can be configured to disregard .htaccess files.

    If you're using nginx, add the following to your domain configuration file:

    Code
    location ^~ /data {  deny all;
    }

    If you're using hiawatha, add the following to your configuration file:

    Code
    Directory {  Path = /var/www/rainloop/data  AccessList = deny all
    }
  • Erstelle in dem /data Ordner einfach eine .htaccess Datei mit dem Inhalt


    Code
    Require all denied

    Das sollte im Grunde schon reichen. Stelle aber sicher, dass du Apache im Webhosting auch wirklich nutzt. Soweit ich weiß, kann man dort auch wählen, ob man das nur mit nginx laufen lässt. Das würde in diesem Fall dann nicht funktionieren