Uygulama klasörünü başka bir konuma taşımak
Uygulama dosyaları (genelde)/var/www/$appname dizini içerisindedir.
Eğer uygulama dosyası içerdiği veri yüzünden büyümesi bekleniyorsa, onu başka bir depolama birimine (harici bir sabit disk gibi) taşımak iyi olabilir.
Here's a summary of how to do this the application WordPress. Here, is is assumed that you already mounted the external hard-drive.
1. Move the entire WordPress folder to an external hard drive
mv /var/www/wordpress /media/externalharddrive/
2. Create a symbolic link
So that programs looking for files in /var/www/wordpress will actually take them from the harddrive
ln -s /media/externalharddrive/wordpress /var/www/wordpress
3. Tweak permissions (maybe?)
After this, note that you may need to tweak the permissions of /media/externalharddrive so that www-data (or the user corresponding to the app) is able to read through the folder... Something like :
chgrp www-data /media/externalharddrive
chmod g+rx /media/externalharddrive
(but it depends on your exact setup... Please update this doc page if you figure out what to do exactly)