Search results

  1. wattie

    FreeBSD 12.1 Setup Testing

    Try to directly build MariaDB. You may need to temporarily remove krb, make MariaDB, then put krb back... That was the case with me the last time.
  2. wattie

    MariaDB 10.x not compiling on FreeBSD 12.1

    Reference quotas are very similar and pretty much work the same way; however it's a good point. And I don't know :) It's listed as unfinished feature: quota support for ZFS partitions (directadmin.com)
  3. wattie

    MariaDB 10.x not compiling on FreeBSD 12.1

    Why not? I do not use ZFS, but I see no reason why it should not work.
  4. wattie

    Disable HTTP/2 for a specific domain

    Browsers always connect to http 1.1 first and then upgrade further requests to 2 if offered. So it should be fine. There is a way to disable HTTP2 but I will definitely NOT recommend it: RewriteCond %{SERVER_PROTOCOL} ^HTTP/2\.0$ [NC] RewriteRule . [F,L]
  5. wattie

    mariadb and jemalloc

    On their official git account it's version 5.2.1: Releases · jemalloc/jemalloc · GitHub That version 3.6.0 is more than 6 years old. Anyway you should check the logs to check what happens on boot time. There should be a clue.
  6. wattie

    Disable HTTP/2 for a specific domain

    This should do it - in .htaccess file you can force Apache to remove the upgrade header: Header unset Upgrade Therefore it will not inform the browser that http2 is preferred.
  7. wattie

    Disable HTTP/2 for a specific domain

    Try setting this in the custom HTTPD configuration (Apache): PolicyVersion enforce HTTP/1.1 P.S. Whoops... it looks like it's available from version 2.5.0+ and you are most probably still on 2.4... I will look for another solution later.
  8. wattie

    mariadb and jemalloc

    Why such old version?
  9. wattie

    MySQL update 5.6.45 to 5.6.49

    Login to the console and: cd /usr/local/directadmin/custombuild ./build update ./build update_versions And it will update everything that has a pending update.
  10. wattie

    PHP 8 and imagick fails

    I do as a test. We have four simultaneous versions available :)
  11. wattie

    PHP-FPM nightmares

    Change the theme temporarily and see if it will make a difference. If not, disable plugins 1 by 1 to see which one is doing the trouble.
  12. wattie

    PHP 8 and imagick fails

    PHP 8.0 RC4 is already available in DA. If you set the PHP mode to 8.0 it will download and compile it.
  13. wattie

    PHP-FPM nightmares

    If it's a single service running on the server, then static is the way to go. But this is not going to change the things a lot.
  14. wattie

    PHP-FPM nightmares

    Try to enable slow_query_log for MySQL/MariaDB and see if there is a specific query that is frequently running very slow. slow_query_log = 1 slow_query_log_file = /var/log/mysql-slow-queries.log long_query_time = 10 Wordpress is usually blazing fast by itself. What usually slows it down are...
  15. wattie

    PHP-FPM nightmares

    Because it increases the memory usage and the benefits are questionable for shared hosting. Just test it and see how it will go.
  16. wattie

    PHP-FPM nightmares

    Consider stopping opcache.
  17. wattie

    MariaDB - MyiSAM/Aria Temporary Files Arbitrary File Delete Vulnerability

    I understand why DA is offering the downgrade but can you at least supply the newest versions on files.* so we can manually override the versions.txt and use them? I am trying to use 10.4.16 and it's not here... root@srv2:/usr/local/directadmin/custombuild # ./build update_versions Updating...
  18. wattie

    Remove EC-521 (secp521r1) from the LetsEncrypt generation

    If you try to generate a LetsEncrypt TLS certificate with EC-521, it will fail with the following error: That's because LetsEncrypt does not support secp521r1 anymore. According to the LetsEcnrypt integration guide: Chromium also do not support secp521r1 so even if somehow it's possible to...
  19. wattie

    OSCP Must Staple

    It's an old but still not common feature, but I guess it will grow popularity in future - OSCP Must Staple is an additional instruction bundled inside the TLS certificate which instructs the browser that the server MUST send an OSCP Stapling information. Question: Is there a way to implement...
  20. wattie

    MariaDB 10.x not compiling on FreeBSD 12.1

    No, it's no help as DA does not use the ports. I said that to note that there is no issue with MariaDB on FreeBSD - there is an issue with the MariaDB install from DA on FreeBSD...
Back
Top