yum/3ner
A toon shader for Unity's BIRP.
git clone https://git.yummers.dev/yum/3ner
50e4514
master
1user www-data ; 2worker_processes auto ; 3pid /run/nginx.pid ; 4error_log /var/log/nginx/error.log ; 5include /etc/nginx/modules-enabled/ *.conf ; 6 7events { 8worker_connections 768 ; 9} 10 11http { 12 13## 14# Basic Settings 15## 16 17sendfile on ; 18tcp_nopush on ; 19types_hash_max_size 2048 ; 20server_tokens off ; 21 22## 23# Rate Limiting 24## 25 26# Define rate limit zones 27limit_req_zone $binary_remote_addr zone=api_limit :10m rate=10r/s ; 28limit_req_zone $binary_remote_addr zone=hls_limit :10m rate=100r/s ; 29 30# server_names_hash_bucket_size 64; 31# server_name_in_redirect off; 32 33include /etc/nginx/mime.types ; 34default_type application/octet-stream ; 35 36## 37# SSL Settings 38## 39 40ssl_protocols TLSv1 .2 TLSv1 .3 ; 41ssl_prefer_server_ciphers on ; 42 43## 44# Logging Settings 45## 46 47access_log /var/log/nginx/access.log ; 48 49## 50# Gzip Settings 51## 52 53# If a .gz version of any given file exists, serve it instead. 54gzip on ; 55 56# gzip_vary on; 57# gzip_proxied any; 58# gzip_comp_level 6; 59# gzip_buffers 16 8k; 60# gzip_http_version 1.1; 61# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; 62 63## 64# Virtual Host Configs 65## 66 67include /etc/nginx/conf.d/ *.conf ; 68include /etc/nginx/sites-enabled/ *; 69 70# If a .gz suffixed version of a file exists, serve it instead. 71gzip_static on ; 72}