The Second International Conference on Electronics and Software Science (ICESS2016)

2016-03-21 Thread Joan R
You are invited to participate in *The Second International Conference on Electronics and Software Science (ICESS2016) *that will be held at the Takamatsu Sunport Hall Building, Takamatsu, Japan on N

The Fourth International Conference on Digital Information Processing, E-Business and Cloud Computing (DIPECC2016)

2016-03-21 Thread Joan R
You are invited to participate in The Fourth International Conference on Digital Information Processing, E-Business and Cloud Computing (DIPECC2016) that will be held in Asia Pacific University of Technology and Innovation (APU), Kuala Lumpur, Malaysia, on

Re: nginx seems to just be serving default page

2016-03-21 Thread B.R.
Have you checked your configuration has been loaded properly? Most probably, either: - your configuration is not loaded: check it with the -t nginx option, then check your error log on reload to spot any message there - your configuration file is not used, the default one is (you might ensure you

Re: nginx seems to just be serving default page

2016-03-21 Thread zharvey
As a followup to the original question, what I'm really looking for is for my homepage (index.html) to be served when you go to http://mynginx.example.com, *not* the nginx default page. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,265548,265549#msg-265549 ___

nginx seems to just be serving default page

2016-03-21 Thread zharvey
I am brand new to nginx and have it running on a VM (mynginx.example.com) and running. I am trying to get it to serve content under /opt/mysite (where the homepage is located at /opt/mysite/index.html). Below is the nginx.conf that I'm using: user www-data; worker_processes 4; pid /ru

does nginx support linger_close as client?

2016-03-21 Thread luocn99
Hi guys i run nginx as a proxy, it became a client when connecting to a upstream server. i want to close the connection with SO_LINGER option when i read the full data, because linger_close send RST to upstream server and avoid too many time_wait state. does nginx support the feat

Re: Workers CPU leak [epoll_wait,epoll_ctl]

2016-03-21 Thread Maxim Dounin
Hello! On Sun, Mar 20, 2016 at 04:34:14PM -0400, vizl wrote: > We found, that we are running 'truncate -s 0' to file before removing them. > Can it potentially cause the mentioned above problems ? Yes, for sure. This is a modification of a file being served, and it's expected to cause the CPU

Re: Workers CPU leak [epoll_wait,epoll_ctl]

2016-03-21 Thread vizl
Thank you. Waiting for 1.9.13 branch. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,264764,265536#msg-265536 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Workers CPU leak [epoll_wait,epoll_ctl]

2016-03-21 Thread Maxim Konovalov
On 3/20/16 11:34 PM, vizl wrote: > We found, that we are running 'truncate -s 0' to file before removing them. > Can it potentially cause the mentioned above problems ? > Yes, quite possible. The fix was committed to the mainline branch and will be available in 1.9.13: http://mailman.nginx.org/

How to keep alive when upstream 2 internal server nginx

2016-03-21 Thread nguyenbatam90
This is my config and how i can keep alive request from port *:83 and port *:7082 http{ upstream download_redirect { server 127.0.0.1:80 weight=1; keepalive 20; } server { listen 7082; server_name localhost; location ~ ^/x-keam/serv