Search

Apr 8, 2015

Config Nginx

Edit file config

sudo nano /etc/nginx/nginx.conf

"worker_processes" defines how many concurrent processes that Nginx will use.

In http block

server { # simple reverse-proxy
    listen       80;
    server_name  domain2.com www.domain2.com;
    access_log   logs/domain2.access.log  main;

    # serve static files
    location ~ ^/(images|javascript|js|css|flash|media|static)/  {
      root    /var/www/virtual/big.server.com/htdocs;
      expires 30d;
    }

    # pass requests for dynamic content to rails/turbogears/zope, et al
    location / {
      proxy_pass      http://127.0.0.1:8080;
    }
  }

=======================================
Command

sudo service nginx stop
sudo service nginx start
sudo service nginx restart

No comments:

Post a Comment