![renovate[bot]](/assets/img/avatar_default.png)
little php design preview (dead host/default page/fancyindex) improved "exploit blocking" fancyindex now default off block access to .git folders/files change NGINX_404_REDIRECT default to false
24 lines
488 B
Text
24 lines
488 B
Text
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
listen 443 quic;
|
|
listen [::]:443 quic;
|
|
|
|
server_name "";
|
|
return 444;
|
|
|
|
include conf.d/include/brotli.conf;
|
|
include conf.d/include/force-tls.conf;
|
|
include conf.d/include/tls-ciphers.conf;
|
|
include conf.d/include/always.conf;
|
|
add_header Alt-Svc 'h3=":443"; ma=86400';
|
|
http3 on;
|
|
|
|
#ssl_certificate ;
|
|
#ssl_certificate_key ;
|
|
#ssl_trusted_certificate ;
|
|
}
|