22 lines
602 B
Text
22 lines
602 B
Text
server {
|
|
access_log /var/log/nginx/lol.zzls.xyz.access.log;
|
|
server_name lol.nadeko.net;
|
|
include configs/general.conf;
|
|
include configs/robotsNone.conf;
|
|
|
|
add_header X-Content-Type-Options "nosniff" always;
|
|
add_header Referrer-Policy "same-origin" always;
|
|
add_header Permissions-Policy "interest-cohort=()" always;
|
|
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:40010;
|
|
include configs/proxy.conf;
|
|
}
|
|
|
|
# QUIC
|
|
include configs/http3.conf;
|
|
|
|
listen 443 ssl;
|
|
http2 on;
|
|
}
|