nginx
Contents
1. forward proxy vs reverserd proxy
they both forward client request; act as an intermediary for client and server
the basic defination:
- forward proxy: autual client is transparent for server
- vpn;
- cache server
- reverser proxy: acutal server is transparent for client;
- nginx
- gateway
2. nginx use case
- static server
- reversed proxy
为什么不适合做网关
网关除了要服务转发外,还需要包含限流,鉴权等其他一些功能;需要进一步开发;
nginx architecture
master-work; master: manager worker work: handle request
configue
1. nginx configure basic
|
|
- server configure
3. gzip compress
|
|
2. configure statics
|
|
3. proxy cache
|
|
- proxy_cache_path:
- keys_zone: create a shared memory zone for storing the cache key
- max_size: the cache max size
- how long an item can remain in the cache without being accessed.