Playing with Debian 12 - some issues???

Discussion in 'ISPConfig 3 Priority Support' started by craig baker, Oct 16, 2023.

  1. craig baker

    craig baker Member HowtoForge Supporter

    my point exactly but how did the apps vhost GET to be wrong? it was setup on a new server (deb 12) then migrated to from ns10. Why would it suddenly be wrong? smells like a little bug somewhere in the migration?
    system>interface>main config gives phpmyadmin url: https://[SERVERNAME]:8081/phpmyadmin

    but I'll point out ns11.cdbsystems.com:8080 comes up with the correct SSL.
    from 000-app.vhost on ns11 /etc/apache2:
    Code:
    Listen 8081
    # NameVirtualHost *:8081
    
    <VirtualHost _default_:8081>
      ServerAdmin webmaster@localhost
    
    
      <Directory /var/www/apps>
        <FilesMatch "\.ph(p3?|tml)$">
          SetHandler None
        </FilesMatch>
      </Directory>
    
      # SSL Configuration
      SSLEngine On
        SSLProtocol All -SSLv3 -TLSv1 -TLSv1.1
        SSLCertificateFile /usr/local/ispconfig/interface/ssl/ispserver.crt
      SSLCertificateKeyFile /usr/local/ispconfig/interface/ssl/ispserver.key
      #SSLCACertificateFile /usr/local/ispconfig/interface/ssl/ispserver.bundle
    
    where does it get the SSL for ns10?
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    So it's the exact same SSL cert that is used for port 8080 and 8081 on ns11 which means they can not show up as different certs. And the systems cert is not altered by a migration anyway. So your problem might be related to networking, maybe you route ports in a firewall to the old server or something similar.
     
  3. craig baker

    craig baker Member HowtoForge Supporter

    lol just what I was thinking :) that infact MUST be it.
    Dual wan routers are SO much fun :)
     
    Last edited: Nov 27, 2023

Share This Page