Friday, April 19, 2013

extjs 4 links

BEST MVC http://www.mysamplecode.com/2012/06/extjs-check-browser-type-version.html

cd ~/.config/sublime-text-3/Packages

git clone https://github.com/jdc0589/JsFormat.git
restart ST3
Ctrl+Shift+P, then "Format:Javascript"



http://www.mysamplecode.com/2012/04/jquery-ajax-request-response-java.html

http://www.mysamplecode.com/2012/08/sencha-touch-search-field-example.html

http://www.mysamplecode.com/2012/07/linux-tips-and-tricks-beginners.html

http://www.mysamplecode.com/2012/06/extjs-button-click-example.html

http://www.mysamplecode.com/2012/06/extjs-date-manipulation-add-subtract.html

BEST for me 

Thursday, April 18, 2013

reverse proxy for jetty 9 with nginx


========jetty 9  docs =========
http://wiki.eclipse.org/Jetty_Expanded_Webapp_Deploy
http://wiki.eclipse.org/Jetty/Howto/Configure_JNDI_Datasource
http://www.eclipse.org/jetty/documentation/current/

====== set up proxy for jetty 9 ==========
from jetty side, if you want to run at a maven webapp dir, do as follows:

1) cd ~/projects-try/ccaApp
2) mvn war:inplace (run this only if java compile is needed, jsp's gets refreshed directly)
3) add jetty-web.xml with following details under WEB-INF
you can also do setup extra things like datasource, jndi etc.,
look at url jetty 9 http://www.eclipse.org/jetty/documentation/current/
4) note the context name given here should match with the one we will put in nginx proxy-pass as follows
before close of last "}", paste folowing contents
#inside server add
sudo vi /etc/nginx/sites-available/default
sudo /etc/init.d/nginx reload

location ^~ /j9090 {
     proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:9090;
    }
5) then you can start jetty by jetty.jar or using jetty-maven-plugin too
java -jar ~/programs/jetty-9.jar --port 9090  ~/projects-try/ccaApp/src/main/webapp

6) test these both url's it should work
a) using nginx http://localhost/j9090/
b) using jetty http://localhost:9090/j9090/

nginx setup and php


sudo apt-get install nginx
sudo /etc/init.d/nginx start

#install php-fpm
sudo apt-get install php5-fpm
sudo vi /etc/nginx/nginx.conf

#adjust values
worker_processes  4;
keepalive_timeout   2;

mkdir ~/www-nginx
cp /etc/nginx/sites-available/default ~/www-nginx/default.orig

#Virtual hosts are defined in server {} containers. The default #virtualhost is defined in the file /etc/nginx/sites-available/default:

sudo vi /etc/nginx/sites-available/default

========
server {
        listen   80; ## listen for ipv4; this line is default and implied
        listen   [::]:80 default ipv6only=on; ## listen for ipv6

        #root /usr/share/nginx/www;
root /home/rajesh/www-nginx;
        index index.php index.html index.htm;

        # Make site accessible from http://localhost/
        server_name _;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }

        location /doc/ {
                alias /usr/share/doc/;
                autoindex on;
                allow 127.0.0.1;
                deny all;
        }

        # Only for nginx-naxsi : process denied requests
        #location /RequestDenied {
                # For example, return an error code
                #return 418;
        #}

        #error_page 404 /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/www;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}
==========

sudo /etc/init.d/nginx reload
sudo apt-get install php5-fpm

echo "" > ~/www-nginx/info.php

#test using http://rpradeshik/info.php