Zauzeće diska, pregled po direktorijima
du -k | sort -nr | awk ' BEGIN { split("KB,MB,GB,TB", Units, ","); } { u = 1; while ($1 >= 1024) { $1 = $1 / 1024; u += 1 } $1 = sprintf("%.1f %s", $1, Units[u]); print $0; } ' > sortirano.txt
du -k | sort -nr | awk ' BEGIN { split("KB,MB,GB,TB", Units, ","); } { u = 1; while ($1 >= 1024) { $1 = $1 / 1024; u += 1 } $1 = sprintf("%.1f %s", $1, Units[u]); print $0; } ' > sortirano.txt
/usr/local/cpanel/bin/update-roundcube --force
LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-2.2.15/ext/apache2/mod_passenger.so PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.2.15 PassengerRuby /usr/bin/rubyAfter you restart Apache, you are ready to deploy any number of Ruby on Rails applications on Apache, without any further Ruby on Rails-specific configuration! ——————————————– Deploying a Ruby on Rails application: an example Suppose you have a Rails application in /somewhere. Add a virtual host to your Apache configuration file and set its DocumentRoot to /somewhere/public:
<VirtualHost *:80> ServerName www.yourhost.com DocumentRoot /somewhere/public # <-- be sure to point to 'public'! <Directory /somewhere/public> AllowOverride all # <-- relax Apache security settings Options -MultiViews # <-- MultiViews must be turned off </Directory> </VirtualHost>And that’s it! You may also want to check the Users Guide for security and optimization tips, troubleshooting and other useful information: /usr/lib/ruby/gems/1.8/gems/passenger-2.2.15/doc/Users guide Apache.html Enjoy Phusion Passenger, a product of Phusion (www.phusion.nl) 🙂 http://www.modrails.com/ Phusion Passenger is a trademark of Hongli Lai & Ninh Bui.
Quote:
Quote:
Quote:
|
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
|
Quote:
Quote:
Quote:
Quote:
|
Quote:
Quote:
Quote:
Quote:
|
Quote:
Quote:
|
Quote:
|
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
|
Quote:
|
U .htaccess datoteci upišite sljedeće, “username” zamijenite sa odgovarajućim imenom hosting računa:
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/username
</IfModule>
U php.ini datoteci podesite vlastite PHP postavke:
allow_url_fopen = On
upload_max_filesize = 20M
post_max_size = 20M
memory_limit = 256M
upload_tmp_dir = 80M
max_execution_time = 600
ili jednostavno prekopirajte sistemsku /usr/local/lib/php.ini datoteku i u njoj obavite potrebne izmjene.
Napomena, ovaj način postavljanja php.ini postavki vrijedi samo kada je PHP podešen kao Apache “suPHP” modul.