make image smaller + allow long passwd + dep updates + fix compression/misspellings

Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
Zoey
2023-02-09 12:10:24 +01:00
parent 45895ac53e
commit 14c2253721
28 changed files with 162 additions and 187 deletions

View File

@@ -1,4 +1,4 @@
brotli on;
brotli_types *;
brotli_comp_level 11;
brotli_static on;
brotli_comp_level 0;
brotli_static on;

View File

@@ -4,6 +4,8 @@ pcre_jit on;
worker_processes auto;
error_log stderr;
quic_bpf on;
# Custom
include /data/nginx/custom/root.conf;
@@ -24,8 +26,11 @@ http {
server_tokens build;
aio threads;
sendfile on;
quic_gso on;
quic_retry on;
tcp_nopush on;
tcp_nodelay on;
http3_push_preload on;
client_max_body_size 0;
client_body_buffer_size 512k;
@@ -33,7 +38,7 @@ http {
gzip_vary on;
gzip_types *;
gzip_proxied any;
gzip_comp_level 9;
gzip_comp_level 1;
gunzip on;
gzip_static on;
@@ -111,6 +116,8 @@ http {
}
stream {
quic_gso on;
quic_retry on;
# Files generated by NPM
include /data/nginx/stream/*.conf;