Full Config:
#user nobody;
# This number should be, at maximum, the number of CPU cores on your system.
# (since nginx doesn't benefit from more than one worker per CPU.)
worker_processes 5;
#give worker processes the priority (nice) you need/wish, it calls
setpriority().
worker_priority -10;
Hello!
On Wed, Jul 23, 2014 at 01:35:31PM -0400, ericreiss wrote:
> Just getting started with NGINX and reading the Beginner's Guide.
>
> The guide says to create two directories:
> /data/www
> /data/images
>
> Then goes on to tell you to setup two locations:
> location / {
> root /data/w
Never mind, I see what it is doing now.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?2,252003,252004#msg-252004
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Just getting started with NGINX and reading the Beginner's Guide.
The guide says to create two directories:
/data/www
/data/images
Then goes on to tell you to setup two locations:
location / {
root /data/www;
}
and
location /images/ {
root /data;
}
Then says the results should look
I am setting up a nginx reverse ssl proxy - I have a machine I can use with
2 E5-2650 CPU's and lots of RAM. I have nginx-1.6.0 + openssl-1.0.1h
installed. I have taken into consideration most optimization suggestions out
there and incorporated them. I will attach a copy of my config file.
(optim