yum/3ner

A toon shader for Unity's BIRP.

git clone https://git.yummers.dev/yum/3ner

yumImpostors: begin optimization work50e4514

master
1.3 KiB72 linesraw
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 {
8	worker_connections 768;
9}
10
11http {
12
13	##
14	# Basic Settings
15	##
16
17	sendfile on;
18	tcp_nopush on;
19	types_hash_max_size 2048;
20	server_tokens off;
21
22	##
23	# Rate Limiting
24	##
25
26	# Define rate limit zones
27	limit_req_zone $binary_remote_addr zone=api_limit:10m rate=10r/s;
28	limit_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
33	include /etc/nginx/mime.types;
34	default_type application/octet-stream;
35
36	##
37	# SSL Settings
38	##
39
40	ssl_protocols TLSv1.2 TLSv1.3;
41	ssl_prefer_server_ciphers on;
42
43	##
44	# Logging Settings
45	##
46
47	access_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.
54	gzip 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
67	include /etc/nginx/conf.d/*.conf;
68	include /etc/nginx/sites-enabled/*;
69
70	# If a .gz suffixed version of a file exists, serve it instead.
71	gzip_static on;
72}