Search results

  1. M

    Bug: da_sso_<ID> user does not belong to you when deleting a database

    Same here: Created a DB Login to phpmyadmin with SSO Return to DA and delete the DB
  2. M

    AlmaLinux and MariaDB 10.6 upgrade failed

    Just a headups in case anyone has the same problem. After upgrading MariaDB from 10.4 to 10.6 using custombuild, it failed to start. Error: /usr/sbin/mysqld: error while loading shared libraries: libpmem.so.1: cannot open shared object file: No such file or directory This was solved by...
  3. M

    Configure Exim for outbound remote mail problem

    I have a workaround, in case someone else experience the same problem with IPv6 external SMTP host and Exim. In exim.routers.pre.conf replace: ignore_target_hosts = 127.0.0.0/8 with: ignore_target_hosts = <; 0000::0000/0 ; 127.0.0.0/8 This will force the domainname to be resolved as IPv4 address.
  4. M

    Configure Exim for outbound remote mail problem

    Using the literal IPv6 address in square brackets works, just like the IPv4 address. However, this gives a minor error: SSL verify error: certificate name mismatch: That's why I wanted to use the FQDN, which works if it would only resolve to IPv4. But Exim seems to have problems with IPv6. No...
  5. M

    Configure Exim for outbound remote mail problem

    I tried the square brackets, but it does not seem to work when using FQDN: With one colon: route_list = * [smtp.example.com]:587 Error: no IP address found for host [smtp.example.com] With double colons: route_list = * [smtp.example.com]::587 Error: no IP address found for host 2a01 :rolleyes:
  6. M

    Configure Exim for outbound remote mail problem

    I have configured Exim to use a remote outbound mail server. As mail service, I make use of mxroute.com. Followed this very nice tutorial: https://docs.directadmin.com/other-hosting-services/exim/configuring-exim.html#dkim-installation-guide The problem is something goes wrong when the remote...
  7. M

    Slave DNS and subdomains

    I currently have one VPS with DA and multiple IP's assigned and am trying to setup DNS. My hosting provider offers slave DNS so you can setup your own DNS and automatically transfer zones to their DNS. Sound good, but there are some problems with this. My directadmin server has one dns server...
  8. M

    keepalive_timeout default

    Is there any reason why nginx-default.conf has a very low keepalive_timeout setting? keepalive_timeout 2; The reason I'm asking this is because some users reported weird connection lost errors. It seems iOS8 and higher is having problems with the low timeout setting. It was most visible when...
  9. M

    Need help with a 301 rewrite

    Recently I changed some things on my site that need a 301 redirect. I would like to do this this as efficient as possible. old situation: http://www.sitename.com/old/etc new situation: https://sitename.com/new/etc Right now I'm doing it with the so called 'evil' if statement: rewrite...
  10. M

    Domain pointers (SSL)

    I created a domain pointer (no alias) and noticed the following: http://domain1 > http://domain2 = working fine https://domain1 > https//domain2 = not working This is because SSL is not defined in nginx_server_redirect.conf. Is this by design, or just a small missing feature? I changed...
  11. M

    Force sub domain to www

    I noticed that google is indexing my sites with different sub domains. For example, main site is www.site.com. However, it is also accesible with mail.site.com and ftp.site.com. Google will index this and mark it as duplicate content, which is bad for your rankings. What can I do with nginx...
  12. M

    Nginx keeps updating?

    Not very important, but every time I run ./build versions, it says: Is this normal, or something wrong on my server? (custombuild 2.0.0-RC7 (rev: 1000) on centos 6.5)
  13. M

    Enabling SPDY

    Hello, I have compiled NGINX with the SPDY module on my server. Now I need to adjust some configs, but what would be the right way to do this? I added SPDY in "/usr/local/directadmin/data/templates/nginx_server_secure.conf": listen |IP|:|PORT_443| ssl spdy; |MULTI_IP| ... and ofcourse followed...
  14. M

    IPv6 AAAA records disappearing ?

    I hope someone can help me with this one, it's driving me nuts :confused: I have a multi server setup, both Ipv6 enabled and working fine. On Server 1 I have a domain with some AAAA records. When I do a "action=rewrite&value=named" on Server 1, the DNS records are transferred to Server 2. No...
  15. M

    Small bug in nginx.conf?

    Not sure if this is a known issue or something else wrong: Everytime the directadmin-vhost.conf is generated, it contains 2 syntax errors. The last line begins with Include instead of include and the line isn't ended with a ';' I'm running the latest DA build (1.43.0 RC2) + custombuild 2 on...
  16. M

    Directadmin 1.43.0 - Release Candidate 1

    This is looking very nice! I'm testing it with nginx and it's working fine so far (custombuild 2). The performance boost is incredible. I'm able to run a busy forum that normally needs atleast 2GB on a small vps with just 512MB ram. Insane :)
  17. M

    Added IPv6, server pingable but no website

    My hosting provider gave me a /80 ipv6 to play with. I have followed the steps explained here: http://help.directadmin.com/item.php?id=353 (ipv6 howto) and here: http://help.directadmin.com/item.php?id=346 (multi ip setup). My first question, after adding the ipv6 ip in DA it shows as a /64...
  18. M

    Admin backup ftp problems

    I'm using the 'Admin Backup/Transfer' feature to schedule daily backups. These bacukps should be automaticly FTP-ed to another server. However, the destinationserver doesn't handle passive FTP transfers very well. It just stops. If I manually upload files with passive off, it works great. So...
  19. M

    Problem with DA and SSL

    I just ordered an SSL certificate for use with DA (admin interface). However I just discovered DA doesn't like DES3 encrypted .key file :( When I start DA it just stops telling the .key file is not correct. I used this to create the key: openssl genrsa -des3 -out domainname.key 1024 It now...
Back
Top