32ff051de2
nginx [engine x] is a HTTP server and IMAP/POP3 proxy server. The basic HTTP features: * Handling of the static files, index files, and autoindexing * Accelerated reverse proxying without caching, simple load balancing and fault tolerance * Accelerated support without caching of the remote FastCGI servers, simple load balancing and fault tolerance * Modular architecture, filters including gzipping, byte ranges, chunked responses, and SSI-filter; Several subrequests in one page handling in SSI-filter via FastCGI or proxy running in parallel * the SSL support The IMAP/POP3 proxy server features: * User redirection to IMAP/POP3 backend using an external HTTP authentication server * Plain text authentication (LOGIN, USER/PASS) * SSL and STARTTLS support ok and help steven@
14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
Documentation on nginx can be found on the wiki:
|
|
http://wiki.codemongers.com/Main
|
|
|
|
Quick info for the impatient:
|
|
http://wiki.codemongers.com/NginxGettingStarted
|
|
|
|
You may want to put the following into your /etc/rc.local:
|
|
|
|
# start nginx
|
|
if [ -x ${PREFIX}/sbin/nginx ]; then
|
|
echo -n ' nginx'
|
|
${PREFIX}/sbin/nginx
|
|
fi
|