And the little fixes...
This commit is contained in:
parent
4f545e21a8
commit
0b16113e1a
6 changed files with 10 additions and 5 deletions
|
@ -8,6 +8,9 @@ server {
|
|||
location / {
|
||||
return 301 https://4getus.zzls.xyz$request_uri;
|
||||
}
|
||||
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
}
|
||||
|
||||
server {
|
||||
|
|
|
@ -9,7 +9,8 @@ server {
|
|||
include configs/proxy.conf;
|
||||
}
|
||||
|
||||
listen 443 ssl http2; # managed by Certbot
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
ssl_certificate /etc/letsencrypt/live/logs.spanix.team/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/logs.spanix.team/privkey.pem; # managed by Certbot
|
||||
include configs/sslConfig.conf;
|
||||
|
|
|
@ -3,6 +3,7 @@ server {
|
|||
server_name lol.zzls.xyz;
|
||||
include configs/general.conf;
|
||||
include configs/robotsNone.conf;
|
||||
|
||||
# security headers
|
||||
add_header X-XSS-Protection "1; mode=block" always;
|
||||
add_header X-Content-Type-Options "nosniff" always;
|
||||
|
@ -17,7 +18,7 @@ server {
|
|||
}
|
||||
|
||||
# QUIC
|
||||
include configs/http3.conf
|
||||
include configs/http3.conf;
|
||||
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
|
|
|
@ -33,7 +33,7 @@ server {
|
|||
# QUIC
|
||||
include configs/http3.conf;
|
||||
|
||||
listen 443 ssl
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
include configs/ssl.conf;
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ server {
|
|||
}
|
||||
|
||||
# QUIC
|
||||
include config/http3.conf;
|
||||
include configs/http3.conf;
|
||||
|
||||
listen 443 ssl;
|
||||
http2 on;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ssl_certificate /etc/letsencrypt/live/zzls.xyz/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/zzls.xyz/privkey.pem;
|
||||
include configs/sslConfig.conf
|
||||
include configs/sslConfig.conf;
|
||||
|
|
Loading…
Add table
Reference in a new issue