nginx rewrite websphere

wrzesień 12th, 2007

Dziś powstał kawałek konfiguracji dla nginx obsługujący aplikację działającą na platformie WebSphere


Poniżej wycinek z nginx.conf


listen 80;
server_name localhost websphare.eqax.pl www.websphare.eqax.pl;
access_log /var/log/nginx/host.access.log main;
location / {
rewrite ^/(.*)$ /PlantsByWebSphere/$1;
}
location /PlantsByWebSphere/ {
proxy_pass http://192.168.47.128:9080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}

Oczywiście nazwa aplikacji to “sampel” o nazwie PlantsByWebSphere z domyślnej instalacji WebSphere :)

Leave a Reply