91 lines
2.5 KiB
Text
Executable file
91 lines
2.5 KiB
Text
Executable file
server {
|
|
access_log /var/log/nginx/logs.access.log combined;
|
|
|
|
server_name logs.zzls.xyz;
|
|
include configs/general.conf;
|
|
include configs/securityheaders.conf;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:40003;
|
|
include configs/proxy.conf;
|
|
|
|
# location ~ ^/(channel/rubius|channelid/39276140)/ {
|
|
# return 401 "Los logs de Rubius han sido deshabilitados";
|
|
# }
|
|
# location ~ ^/(channel/ibai|channelid/83232866)/ {
|
|
# return 401 "Los logs de Ibai han sido deshabilitados";
|
|
# }
|
|
|
|
location ~ ^/(channel/*/user/zonianbot|channelid/*/user/zonianbot|channel/*/userid/670683053|channelid/*/userid/670683053)/ {
|
|
return 401 "XD";
|
|
}
|
|
location ~ ^/(channel/notfijxu|channelid/664947434)/ {
|
|
return 401 "lol";
|
|
}
|
|
|
|
error_page 501 502 503 /50x.html;
|
|
proxy_intercept_errors on;
|
|
}
|
|
|
|
location = /50x.html {
|
|
root /var/www/logs;
|
|
index 50x.html;
|
|
}
|
|
|
|
|
|
listen [::]:443 ssl http2; # managed by Certbot
|
|
listen 443 ssl http2; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/logs.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/logs.zzls.xyz/privkey.pem; # managed by Certbot
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}
|
|
|
|
server {
|
|
access_log /var/log/nginx/notlogs.access.log combined;
|
|
|
|
server_name notlogs.zzls.xyz;
|
|
|
|
location / {
|
|
rewrite ^/(.*)$ https://logs.zzls.xyz/$1 redirect;
|
|
}
|
|
|
|
listen [::]:443 ssl http2; # managed by Certbot
|
|
listen 443 ssl http2; # managed by Certbot
|
|
ssl_certificate /etc/letsencrypt/live/logs.zzls.xyz/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/logs.zzls.xyz/privkey.pem; # managed by Certbot
|
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
|
|
|
}
|
|
|
|
|
|
server {
|
|
if ($host = notlogs.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name notlogs.zzls.xyz;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
}
|
|
server {
|
|
if ($host = logs.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
} # managed by Certbot
|
|
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name logs.zzls.xyz;
|
|
return 404; # managed by Certbot
|
|
|
|
|
|
}
|