chore: tweak nginx conf

This commit is contained in:
Naramsim 2024-02-09 19:34:47 +01:00
parent 58b9590623
commit 2c3c7b2221

View file

@ -2,26 +2,32 @@ worker_processes 1;
events { events {
worker_connections 1024; worker_connections 1024;
multi_accept on; # accept each connection as soon as you can multi_accept on;
accept_mutex off; accept_mutex off;
use epoll; use epoll;
} }
http { http {
include mime.types; access_log off;
default_type application/octet-stream; log_format pokeapilogformat
'$remote_addr '
'"$request" $status cs:$upstream_cache_status s:$bytes_sent '
'r:"$http_referer"';
error_log /dev/stdout warn;
include mime.types;
default_type application/octet-stream;
server_tokens off; # dont send unnecessary server info (like version) server_tokens off;
add_header X-XSS-Protection "1; mode=block"; # prevent XSS add_header X-XSS-Protection "1; mode=block";
client_body_buffer_size 10K; # raise the threshold by which requests are written to HDD instead of RAM client_body_buffer_size 10K;
client_header_buffer_size 2k; client_header_buffer_size 1k;
client_max_body_size 8m; # we dont accept requests larger that 8mb client_max_body_size 8m;
sendfile on; sendfile on;
tcp_nopush on; tcp_nopush on;
tcp_nodelay on; tcp_nodelay on;
keepalive_timeout 5; keepalive_timeout 5;
@ -47,6 +53,16 @@ http {
192.168.0.0/24 0; 192.168.0.0/24 0;
} }
map $http_user_agent $exclude_ua {
"~*monitoring*" 0;
default 1;
}
map $request_method $only_post {
default 0;
POST $exclude_ua;
}
map $limit $limit_key { map $limit $limit_key {
0 ""; 0 "";
1 $binary_remote_addr; 1 $binary_remote_addr;
@ -69,7 +85,7 @@ http {
# Admin console # Admin console
location /graphql/admin/ { location /graphql/admin/ {
expires 1m; # client-side caching, one minute for each API resource expires 1m;
add_header Cache-Control "public"; add_header Cache-Control "public";
add_header Pragma public; add_header Pragma public;
proxy_http_version 1.1; proxy_http_version 1.1;
@ -89,21 +105,15 @@ http {
} }
location /graphql/v1beta { location /graphql/v1beta {
access_log /dev/stdout pokeapilogformat if=$only_post;
include /ssl/cache.conf*; include /ssl/cache.conf*;
# proxy_cache small;
# proxy_cache_valid 200 10d;
# proxy_cache_valid any 0;
# proxy_cache_methods POST;
# proxy_cache_key "$request_method$request_uri$request_body";
limit_req zone=graphqlDefaultLimit burst=100 nodelay; limit_req zone=graphqlDefaultLimit burst=100 nodelay;
limit_req_status 429; limit_req_status 429;
expires 30m; # client-side caching, one minute for each API resource expires 30m;
add_header Cache-Control "public"; add_header Cache-Control "public";
add_header Pragma public; add_header Pragma public;
# add_header X-Proxy-Cache $upstream_cache_status;
proxy_hide_header Access-Control-Allow-Origin; proxy_hide_header Access-Control-Allow-Origin;
add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Origin *;
# add_header X-Cache-Date $upstream_http_date;
proxy_http_version 1.1; proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; proxy_set_header Connection "upgrade";
@ -115,7 +125,7 @@ http {
} }
location /api/ { location /api/ {
expires 1m; # client-side caching, one minute for each API resource expires 1m;
add_header Cache-Control "public"; add_header Cache-Control "public";
add_header Pragma public; add_header Pragma public;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;