Re: PHP - only seems to run one instance?
http://forum.nginx.org/read.php?5,245516http://trac.nginx.org/nginx/ticket/496http://stackoverflow.com/questions/14167910/nginx-and-mysql-timeout-upstream-timed-out-110-connection-timed-outhttp://howto...
View ArticleRe: PHP - only seems to run one instance?
So reading those, they are saying to increase the timeout time, 60 seconds loading a page on this type of server when only I have access isn't a timeout that should happen.The other recommendations are...
View ArticleRe: PHP - only seems to run one instance?
It can be anything from 'bad' programming to ipv6/ipv4/local-dns issues... but its not nginx but the backend(s), try a simple phpbb installation and pound that with many users as a test.
View ArticleRe: PHP - only seems to run one instance?
I get the error even loading up basic pages which just a simple echo
View ArticleRe: PHP - only seems to run one instance?
This may sound daft but do you think it may be an issue with it being connected to itself.So my server is on my machine, I can access it using my local ip, but it has domains bound to it. I always...
View ArticleRe: PHP - only seems to run one instance?
No idea without having a look on the system, could be a loopback somewhere, try a simple "<?php phpinfo();?>" to emulate some load on the loadbalancer.Hangon, domains which go back outside and...
View ArticleRe: PHP - only seems to run one instance?
Yes that's what I have thinking. That maybe my router is detecting a full loop back and rejecting the connections in the firewall thinking it may be a network attack.I can set a wildcard in this...
View ArticleRe: PHP - only seems to run one instance?
bigjme Wrote:-------------------------------------------------------> Yes that's what I have thinking. That maybe my router is detecting a> full loop back and rejecting the connections in the...
View ArticleRe: PHP - only seems to run one instance?
Ok, thanks.I may look at setting us a dns server on my dev machine to save the reboot each time i change the host files
View ArticleRe: PHP - only seems to run one instance?
bigjme Wrote:-------------------------------------------------------> Ok, thanks.>> I may look at setting us a dns server on my dev machine to save the> reboot each time i change the host...
View ArticleRe: PHP - only seems to run one instance?
Thank you very much for your help :)I used one of my developed sites at work today without any issues so it seems the error was because of me doing a full loop back to my systemRegards,Jamie
View ArticleAccess Denied - Access to the script 'been denied (see...
Hi,i have this configuration:server {listen 8080;server_name xxx.com;root "/home/xxx/xxx.xxx.com.xx";index index.php;client_max_body_size 10m;location / {try_files $uri $uri/...
View ArticleAccess Denied - Access to the script 'been denied (see...
Hi,i have this configuration:server {listen 8080;server_name xxx.com;root "/home/xxx/xxx.xxx.com.xx";index index.php;client_max_body_size 10m;location / {try_files $uri $uri/...
View Articlesite.com works site.com/something 502 error
hi,i have a wordpress blog using nginx/php-fpm/varnish and this situation:config:server {listen 8080;#listen [::]:80 default_server ipv6only=on;root /home/xxx/www.site.com;index index.php index.html...
View Articleserving php files from 2 locations under same server name
HiI am using nginx to server mysite.com and I also want to run a clone for testing purposes on same domain but at mysite.com/clone.Now when I uselocation /clone {root /usr/local/nginx; #clone is folder...
View Articletunneling connection from localhost
Hi, my experience in nginx not enought for solving my problem, so can you help me? I want git web-interface servlet Gitblit listening only localhost, for example localhost:8080, and configure nginx in...
View Articleproxy_pass and rewrite 404 issue
HiI use nginx as a proxy reverse and I need to setup the following:https://server1/system/n1/tt needs to act as a proxy to http://server2:8088/ttI have the follwoing setup in my server.conf:...location...
View ArticleRe: Restricting access to a folder
I had this issue as well, and the solution is to make sure your "allow / deny / auth" configuration block(s) always sit -above- your PHP & Static file configuration.location ~* /admin {auth_basic...
View ArticleAuth loop?
Hello, I have nginx up and running. But i have one problem.My scenario is this, A user access my nginx server and has to provide a login/password and is then redirected to another (local) server that...
View ArticleRe: site.com works site.com/something 502 error
Hi,Solved, the problem was wordpress theme.thanks
View Article