fbpx

RainLoop webmail for DirectAdmin

Installation SSH to your DirectAdmin server (with root). Download RainLoop. cd /var/www/html wget http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip Extract downlaoded file. unzip rainloop-community-latest.zip -d rainloop Set permissions. cd /var/www/html/rainloop find . -type d -exec chmod 755 {} ; find . -type f -exec chmod 644 {} ; chown -R webapps:webapps . Configuration Update DirectAdmin to use RainLoop. nano /usr/local/directadmin/conf/directadmin.conf set webmail_link=rainloop service directadmin […]

DirectAdmin server updaten

Om DirectAdmin te updaten moet je Root (sudo) rechten hebben. Update eerst het systeem zelf: Voor Debian/Ubuntu: apt-get update && apt-get dist-upgrade Voor RedHat/CentOS: yum update Update de custombuild software list: DirectAdmin comes with custombuild which is the update manager in this case. First we want to navigate to the custombuild directory: cd /usr/local/directadmin/custombuild/ We […]

Nieuwe mappen maken

Het maken van een nieuwe folder is erg eenvoudig. Eerst bekijkt u in welke directory u de nieuwe folder wilt hebben. Bijvoorbeeld, als u http://www.domeinnaam.com/news/ wilt maken, dan zou u moeten gaan naar de public_html directory. Daarna typt u de folder naam in aan de onderkant van het scherm en klik de “Create” toets. Let […]

NGNIX forceren www naar niet www of https:// verkeer redirect

Here is an example how to force no-www domain on Servepilot VPS servers with Nginx. Create /etc/nginx-sp/vhosts.d/servermeister.d/0www_redirect.conf with code that will force all www pages 301 redirect to a naked no-www domain. Code: if ($host ~* www.servermeister.com$) { return 301 https://www.servermeister.nl$request_uri; } restart nginx with the command Code: sudo service nginx-sp restart If you would […]