Revision [3895]

Last edited on 2011-02-01 16:35:40 by KenFong
Additions:
SSL reverse proxy - http://www.linux-masters.com/2010/04/nginx-setup-ssl-reverse-proxy-load.html


Revision [2242]

Edited on 2009-03-20 02:16:14 by WikiAdmin
Additions:
Tune - http://wiki.nginx.org/FreeBSDOptimizations


Revision [2180]

Edited on 2009-02-01 06:51:47 by WikiAdmin
Additions:
==Install from source==
==Minimum config==
==minimum linux init script==
#!/bin/sh
. /etc/init.d/functions
pidfile=/var/run/nginx.pid
case $1 in
start)
daemon --pidfile $pidfile nginx
;;
stop)
killproc -p $pidfile
;;
esac
Deletions:
Install from source
Minimum config


Revision [2043]

Edited on 2008-10-22 06:33:47 by WikiAdmin
Additions:
{{parent page="WebServer"}}
Deletions:
{{parent [age="WebServers"}}


Revision [2042]

Edited on 2008-10-22 05:57:43 by WikiAdmin
Additions:
proxy_pass http://127.0.0.1:8080;
proxy_set_header X-Real-IP $remote_addr;
Rewrite - http://wiki.codemongers.com/NginxHttpRewriteModule
Deletions:
proxy_pass http://127.0.0.1:8080;


Revision [2041]

Edited on 2008-10-22 05:55:08 by WikiAdmin
Additions:
user apache;
worker_processes 2;
gzip on;
server {
listen 192.168.13.10:80;
server_name nginx.domain.tld;
location / {
proxy_pass http://127.0.0.1:8080;
}
Deletions:
user apache;
worker_processes 2;
gzip on;
server {
listen 192.168.13.10:80;
server_name nginx.domain.tld;
location / {
proxy_pass http://127.0.0.1:8080;
}


Revision [2040]

Edited on 2008-10-22 05:54:48 by WikiAdmin
Additions:
Minimum config
user apache;
worker_processes 2;
gzip on;
server {
listen 192.168.13.10:80;
server_name nginx.domain.tld;
location / {
proxy_pass http://127.0.0.1:8080;
}


Revision [2039]

Edited on 2008-10-22 05:49:05 by WikiAdmin
Additions:
--pid-path=/var/run/nginx.pid --error-log-path=/var/log/nginx.err \
Deletions:
--pid-path=/var/run --error-log-path=/var/log/nginx.err \


Revision [2038]

Edited on 2008-10-22 05:47:24 by WikiAdmin
Additions:
--pid-path=/var/run --error-log-path=/var/log/nginx.err \
--http-log-path=/var/log/nginx.log --http-proxy-temp-path=/var/cache/nginx/http \
Deletions:
--pid-path=/var/run --error-log-path=/var/log \
--http-log-path=/var/log --http-proxy-temp-path=/var/cache/nginx/http \


Revision [2037]

Edited on 2008-10-22 05:45:13 by WikiAdmin
Additions:
--http-log-path=/var/log --http-proxy-temp-path=/var/cache/nginx/http \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi \
--http-client-body-temp-path=/var/cache/nginx/body \
Deletions:
--http-log-path=/var/log --http-proxy-temp-path=/var/cache/nginx \
--http-fastcgi-temp-path=/var/cache/nginx \
--http-client-body-temp-path=/var/cache/nginx \


Revision [2036]

Edited on 2008-10-22 05:44:00 by WikiAdmin
Additions:
--http-fastcgi-temp-path=/var/cache/nginx \
--http-client-body-temp-path=/var/cache/nginx \
Deletions:
--http-fastcgi-temp-path=/var/cache/ngnix \
--http-client-body-temp-path=/var/cache/ngnix \


Revision [2035]

Edited on 2008-10-22 05:43:01 by WikiAdmin
Additions:
--user=apache --group=apache --conf-path=/etc/nginx.conf \
Deletions:
--user=apache --group=apache --conf-path=/etc \


Revision [2034]

The oldest known version of this page was created on 2008-10-22 05:38:35 by WikiAdmin
Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki