6cbd4ee4fe
The only caveat is that "One megabyte zone can keep about 16 thousand 64-byte states. If the zone storage is exhausted, the server will return the 503 (Service Temporarily Unavailable) error to all further requests." -- nginx documentation
15 lines
194 B
Nginx Configuration File
15 lines
194 B
Nginx Configuration File
# vim: ft=nginx
|
|
|
|
include root-base.conf;
|
|
|
|
http {
|
|
include http-base.conf;
|
|
|
|
include rate-limiting.conf;
|
|
|
|
server {
|
|
include server-base.conf;
|
|
|
|
listen 80 default;
|
|
}
|
|
}
|