Nginx on a Perfect Server

Discussion in 'Installation/Configuration' started by pineapple, Aug 23, 2010.

  1. pineapple

    pineapple New Member

  2. Mark_NL

    Mark_NL Member

    If you read the page you pasted, you should run into a link which describes what you want .. http://wiki.nginx.org/NginxHttpProxyModule

    it basicly comes down to:

    1. install nginx
    2. put in your config:
    Code:
    location / {
      proxy_pass        http://localhost:8000;
      proxy_set_header  X-Real-IP  $remote_addr;
    }
    now all your requests will be proxied through nginx.
     
  3. pineapple

    pineapple New Member

    Thanks Mark - and my ISPConfig won't be affected?

    Andrew
     
  4. Mark_NL

    Mark_NL Member

    afaik know it won't .. just give it a try .. :)
     

Share This Page