This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rake community_engine:make_admin email='vitalygareev@gmail.com' RAILS_ENV='production' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Packets Pings | |
| Host Loss% Snt Last Avg Best Wrst StDev | |
| 1. cc9-primary.colocall.net 0.1% 97713 2.0 1.1 0.4 208.1 12.2 | |
| 2. 62.149.20.74 0.1% 97713 2.1 1.5 0.4 278.9 14.2 | |
| 3. cr02.frf02.pccwbtn.net 0.2% 97713 37.4 36.5 34.6 455.3 39.7 | |
| 4. TenGE13-3.br01.lax05.pccwbtn.net 0.6% 97713 209.3 208.3 199.0 618.2 33.2 | |
| 5. avanz.ge5-7.br01.lax05.pccwbtn.net 0.1% 97713 204.9 203.3 201.8 462.9 11.6 | |
| 6. br02-1-2.lax4.net2ez.com 0.1% 97713 204.4 203.5 202.1 538.3 20.6 | |
| 7. cr01-2-4.lax4.net2ez.com 0.2% 97712 203.8 202.0 200.8 460.4 8.2 | |
| 8. cust-77.lax4.net2ez.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cleanup old inactive ports | |
| `port installed`.split("\n")[1..-1].each do |line| | |
| unless line =~ /^\s+(.*)\(active\)$/ | |
| print "#{line}\n" | |
| `sudo port uninstall #{line}` | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <table class="navniz" width="99%" border="0"> | |
| <tbody> | |
| <tr> | |
| <th align="right"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="/js/jquery.js" type="text/javascript" charset="utf-8"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| var $jq = jQuery.noConflict(); | |
| $jq(document).ready(function(){ | |
| $jq("input[name^='STGenres']").each(function(){ | |
| $jq(this).change(function(){ | |
| $jq(this).parent().prevAll("input[name^='STGenre_groups']").attr('checked', true); | |
| }); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [client] | |
| port = 3306 | |
| socket = /var/run/mysqld/mysqld.sock | |
| [mysqld_safe] | |
| socket = /var/run/mysqld/mysqld.sock | |
| nice = 0 | |
| [mysqld] | |
| user = mysql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Host | |
| 1. cmts.volia.net | |
| 2. v62.g1-1.amber.volia.net | |
| 3. v113.TenGig3-2.topaz.volia.net | |
| 4. v109.TenGig3-8.diamond.volia.net | |
| 5. v109.TenGig3-8.topaz.volia.net | |
| 6. v109.TenGig3-8.diamond.volia.net | |
| 7. v109.TenGig3-8.topaz.volia.net | |
| 8. v109.TenGig3-8.diamond.volia.net | |
| 9. v109.TenGig3-8.topaz.volia.net |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user www-data www-data; | |
| worker_processes 64; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 512; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #dm@stronghold:~$ cat /usr/local/nginx/conf/sites/ads.mp3-online.com.ua | |
| server { | |
| listen 80; | |
| server_name ads.mp3-online.com.ua; | |
| # Main location | |
| location / { | |
| root /var/www/nginx/ads.mp3-online.com.ua/www/; | |
| index index.php index.html index.htm; |