Re: PHP - only seems to run one instance?
I am using the nginx you pointed to, the latest version. It seems to be running 9 instances in total, my CPU is a quad core with hyper-threading (intel e3-1230v2, with 8 worker processes running...
View ArticleRe: PHP - only seems to run one instance?
Good to know :) but php-cgi (and your OS) also need cpu power, it might perform better with 4 workers.
View ArticleRe: PHP - only seems to run one instance?
Right now, unless I hit it with about 1000 page views per second it still runs nowhere near 100% cpu. I plan on upgrading soon to a 16 core 4.5ghz cpu so it should handle it easily :-)
View Articlenginx reverse proxy with 2 upstream servers
Hi,I have 3 subdomains redirected via DNS to a public ipaddress, which is NAT'ed 1:1 to a ubuntu 14.0.4 vm on our private network.This ubuntu VM has nginx installed in a reverse proxy configuration,...
View Article.email gTLD not working for Nginx
I already opened an issue at stack overflow according this, but didn't get an answer, so I'll try over here: http://stackoverflow.com/questions/28907101/email-gtld-not-working-for-nginxIs it something...
View ArticleRe: .email gTLD not working for Nginx
Where should that be added? I tried it by hosting it on two domain providers.
View ArticleRe: .email gTLD not working for Nginx
Where your DNS is managed you need to add a wildcard entry.
View ArticleRe: .email gTLD not working for Nginx
itpp2012 Wrote:-------------------------------------------------------> Where your DNS is managed you need to add a wildcard entry.Oh, thats done already before. That was not the issue.
View ArticleRe: .email gTLD not working for Nginx
What does logfiles say? and with debug mode?Tried curl yet to see what you get back in combination with what ends up in the logs?
View ArticleRe: PHP - only seems to run one instance?
Can I just ask a final question? Now I have opcache enabled I am getting some server response issues. Every so often I will get load times of around 35 seconds for a page that usually takes 5ms. And...
View ArticleRe: PHP - only seems to run one instance?
Could be a php-cgi which is timing out for some reason, or settings, paste your nginx/php config so we can have a look if there is something which stands out.
View ArticleRe: PHP - only seems to run one instance?
php.ini - http://pastebin.com/SPL14Z83nginx.conf - http://pastebin.com/E2Jnrigai thought it easier to pastebin it then paste or attach it.Regards,Jamie
View ArticleRe: PHP - only seems to run one instance?
As another note, if the script takes around 30 seconds to load, the page loads fine (60 second timeout doesn't trigger)The issue with the server responding but not getting any data happens instantly...
View Article404 when everything should be fine
Hello Nginx community,I did several configurations of Nginx, but actually I can t manage to finish one on a new VPS of mine.I use NodeJS as server, a simple hello world with node, which work perfectly...
View ArticleRe: PHP - only seems to run one instance?
Ok, I will try those settings when I get home. I have seen rumours and some stats that setting revalidate_freq=0 doesn't make much of an effect on load times.Yes it adds some slight overhead but not a...
View ArticleProcess request body for POST before sending on to upstream.
I'm using NGINX as a proxy to another webserver. I have managed to write a filter module to allow me to fiddle with the buffer returned from a GET request before returning it to the user, but I also...
View ArticleRestricting access to a folder
My understanding is thatlocation /admin {auth_basic "Administrator Login";auth_basic_user_file /path/to/.htpasswd}with .htpasswd created via htpasswd -c ... and the path to it being absolute should...
View Article