Category: apache

Owncloud: Howto harden owncloud access with a ssh tunnel and squid

If you want to use a private secure owncloud (WebDAV Space Server) as Backup for all your devices you can harden the access thru a openssh Login with key auth and a squid as relay. Install apache2, php5, mysql-Server, openssh, squid3 config Apache2 to listen on https://localhost:443 setup squid3  and config the Proxy to listen only on localhost:3128 […]

Oneye: Cloud Office Solution

If you are looking for a Cloud based Office Solution you should take a closer look on the Open Source Software “oneye” (commercial version of eyeos) All you need is a cloud served or home hosted LAP Webserver (Linux/Unix, Apache, PHP5 Server) NO Database required! Source: http://oneye-project.org/ Advantages? + Weboffice with Word, Excel, Mail Client POP+IMAP, […]

getsimple CMS the free slim lightweight CMS

getsimple is a very easy to handle Content Management System for free, it can be used for Homepages, Businesscards, Blogs.. Advantages: light no database framework opensource free fast easy to setup easy to move to a new domain offers backups tool offers recovery for posts extendable with plugins free themes clean design low system requirements […]

MySQL : Backup and Restore Database without phpmyadmin (commandline)

Problem: phpmyadmin interfaces are slow and often attacked by script kids, if you can don’t use it! Solution: To backup and restore use command line To Backup a database: $mysqldump -u root -p wordpressdb > /backups/wordpressdb-dump.sql [Enter root password] To restore: $mysql -u root -p wordpressdb < /backups/wordpressdb-dump.sql[Enter root password] Remark: this is not recogized […]