jsproxy/nginx.conf

80 lines
2.5 KiB
Nginx Configuration File
Raw Normal View History

2019-04-23 04:14:27 +00:00
http {
server {
2019-04-26 03:15:48 +00:00
# server_name example.com;
# ssl_certificate cert/example.com/ecc.cer;
# ssl_certificate_key cert/example.com/ecc.key;
2019-04-23 04:14:27 +00:00
# listen 8443 ssl http2;
listen 8080;
include api.conf;
}
# https://nginx.org/en/docs/http/ngx_http_core_module.html
2019-04-26 03:15:48 +00:00
resolver 1.1.1.1 ipv6=off;
2019-04-23 04:14:27 +00:00
resolver_timeout 10s;
keepalive_timeout 60;
keepalive_requests 2048;
server_tokens off;
underscores_in_headers on;
# https://nginx.org/en/docs/http/ngx_http_ssl_module.html
2019-04-23 04:14:27 +00:00
ssl_protocols TLSv1.2 TLSv1.3;
2019-04-26 07:31:12 +00:00
ssl_ciphers TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-256-GCM-SHA384:TLS13-AES-128-GCM-SHA256:EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH;
ssl_session_cache shared:SSL:30m;
ssl_session_timeout 1d;
2019-04-23 04:14:27 +00:00
ssl_prefer_server_ciphers on;
# https://nginx.org/en/docs/http/ngx_http_limit_req_module.html
2019-04-23 04:14:27 +00:00
limit_req_log_level warn;
limit_req_zone $binary_remote_addr zone=reqip:16m rate=100r/s;
limit_req zone=reqip burst=200 nodelay;
# https://nginx.org/en/docs/http/ngx_http_log_module.html
2019-04-23 04:14:27 +00:00
# separated by tab (\t)
log_format log_proxy escape=none
'01 '
2019-04-26 03:15:48 +00:00
'$time_iso8601 $_origin_id $_ver $remote_addr '
'$_level $_switched $upstream_cache_status $request_time '
2019-04-23 04:14:27 +00:00
'$request_length $bytes_sent '
2019-05-02 07:00:18 +00:00
'$request_method $_url $status $upstream_http_access_control_allow_origin '
2019-05-03 08:04:20 +00:00
'$http_user_agent $_ref $_mode $_type'
2019-04-23 04:14:27 +00:00
;
access_log logs/proxy.log log_proxy buffer=64k flush=1s;
# https://nginx.org/cn/docs/http/ngx_http_proxy_module.html
2019-05-02 07:00:18 +00:00
# 1MB = 8000key
2019-04-23 04:14:27 +00:00
proxy_cache_path cache
levels=1:2
2019-04-29 09:47:55 +00:00
keys_zone=my_cache:32m
max_size=20g
2019-04-23 04:14:27 +00:00
inactive=6h
use_temp_path=off
;
proxy_http_version 1.1;
proxy_ssl_server_name on;
proxy_buffer_size 16k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_send_timeout 10s;
# https://github.com/openresty/lua-nginx-module
2019-04-29 09:47:55 +00:00
# traffic statistics
lua_shared_dict traff 16k;
lua_load_resty_core off;
2019-04-29 09:47:55 +00:00
lua_package_path ./lua/?.lua;
init_by_lua_file ../lua/init.lua;
init_worker_by_lua_file ../lua/worker.lua;
log_by_lua require('g').inc();
2019-04-26 03:15:48 +00:00
map $http_origin $_origin_id {
2019-04-26 06:41:07 +00:00
include allowed-sites.conf;
2019-04-23 04:14:27 +00:00
}
}
# https://nginx.org/en/docs/ngx_core_module.html
2019-04-23 04:14:27 +00:00
events {
worker_connections 4096;
}