This commit is contained in:
Fijxu 2023-01-21 22:35:40 -03:00
parent 93d0be1ea2
commit bf45e90aee
1 changed files with 5 additions and 2 deletions

View File

@ -1,14 +1,17 @@
server {
access_log /var/log/nginx/cryptochat.zzls.xyz.access.log combined;
error_log /var/log/nginx/cryptochat.zzls.xyz.error.log;
root /var/www/cryptochat;
index index.html;
server_name cryptochat.zzls.xyz cc.zzls.xyz;
# Security headers and general settings
include configs/securityheaders.conf;
include configs/general.conf;
location / {
proxy_pass http://127.0.0.1:40005;
include configs/proxyheaders.conf;
}
# QUIC
add_header Alt-Svc 'h3=":443"; ma=86400';