This commit is contained in:
Fijxu 2025-12-15 18:22:46 +00:00 committed by GitHub
commit f6b50af133
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -18,6 +18,9 @@
# ErrorLog /var/log/apache2/invidious.domain.tld/error.log
CustomLog /dev/null combined
# Required due to long URLs on channels next pages.
LimitRequestLine 16382
RewriteEngine on
SSLCertificateFile /etc/letsencrypt/live/invidious.domain.tld/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/invidious.domain.tld/privkey.pem

View file

@ -15,6 +15,9 @@ server {
access_log off;
error_log /var/log/nginx/error.log crit;
# Required due to long URLs on channels next pages.
large_client_header_buffers 4 16k;
ssl_certificate /etc/letsencrypt/live/invidious.domain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/invidious.domain.tld/privkey.pem;