M.A.G.: Excellent, thank you! meanwhile I stayed at apache with the vB forum, but now I will try it. Also, the link for converting the rules is perfect and much needed.by vicky007 - Migration from Other Servers
Hello, I've experienced strange behavior - I have website with many subdomains and I have nginx set up as load balancer and proxy to apache. each subdomain is using proxy_pass http://apaches; While upstream apaches is defined as follows: upstream apaches { ip_hash; server 127.0.0.1:8044; server 10.0.0.1:8044; } Today I noticed that one subdoby vicky007 - Nginx Mailing List - English
Samfingcul, I did it as other members here advised me. Try it...by vicky007 - Nginx Mailing List - English
Can anyone help please?by vicky007 - Migration from Other Servers
Here is what I found out: The cause is keepalive on vBulletin (nginx as proxy for apache) server that is used for authentication from the main web server I had troubles with. I debuged the application and found out the 3 second wait at website loading is always equal to keepalive settings on the vB server. I put 40 as keepalive timeout, then the website waited 40 seconds to load, etc... thereforeby vicky007 - Nginx Mailing List - English
I updated nginx to latest stable and problem still here. resolvers work properly but when I try to connect to the website I need to wait 3 seconds to get connected..any further surfing of the web is fast (I use keepalive). And I cannot find out why this happened. :-(by vicky007 - Nginx Mailing List - English
Hello, I need to rewrite these rewrites to nginx style, if anyone here is able to help I'd be glad: RewriteRule ^(*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 RewriteRule ^(*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 RewriteCond %{REQUEST_URI} !(index\.php|\.css) RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 All rewrites for nginx Iby vicky007 - Migration from Other Servers
It is strange, because now when I change resolvers it does not help. The writing connections are still higher and apache processes as well. Traffic is as usual. I will try to recompile newer stable build of nginx today and maybe try to serve the website comletely from nginx.by vicky007 - Nginx Mailing List - English
Hello, I'm using nginx as reverse proxy to apache. Apache only serves php because I had no time to set up fastcgi or php-fpm on this box. Anyway, today there was sudden increase in nginx writing connections and increase of apache processes. It already happened to me in past and cause was the datacenter resolvers (at least switching to google resolvers fixed it immediately). Today the changeby vicky007 - Nginx Mailing List - English
Thank you very much, it works perfectly. vickyby vicky007 - Nginx Mailing List - English
Hello, I moved from apache to nginx few quite busy websites and currently I need help with hotlink protection of swf/flt files. I can send hotlinking domains to 403, but I want to supply them with for example hotlink.swf file of my own. I have not figured out how to rewrite the url in case of referer other than my own domains. Would anyone be so kind and advise me in this? Thank you..by vicky007 - Nginx Mailing List - English
Hello, I'm new to nginx and I really like it so far. However, I have problems with hotlink protection I used on apache. I protect swf and flv files as follows: RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain1.com(/)?.*$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain2.com(/)?.*$ RewriteRule \.(flv|swf)$ http://www.someotheby vicky007 - Migration from Other Servers