Jump to content
Froxlor Forum

d00p

Administrators
  • Posts

    10303
  • Joined

  • Last visited

  • Days Won

    43

Posts posted by d00p

  1. Wieso sollte die froxlor-webui nicht funktionieren? FQDN würd ich vor dem Umzug in den einstellungen schon ändern, dann die DB und lib/userdata.inc.php migrieren auf den neuen und danach

    bin/froxlor-cli froxlor:switch-server-ip

    (siehe https://docs.froxlor.org/latest/admin-guide/cli-scripts/#switch-server-ip)

    und anschließen einmal die configs neugenerieren:

    bin/froxlor-cli froxlor:cron -fd

    und durch biste

  2. Well then you indeed have too many redirects....check a potential .htaccess file or the target page. A redirect is VERY basic, it just tells the client to go to the other page. Most likely the other page redirects back or does a reedirect to itself. You can find out by using `curl` on the shell and inspect the headers (Location: http://TARGET) and then follow these targets and you will see that there is a redirect back to where it came from at some point

  3. try the following patch:

    diff --git a/lib/Froxlor/Cron/Http/Apache.php b/lib/Froxlor/Cron/Http/Apache.php
    index f3fe3f6b..609f9164 100644
    --- a/lib/Froxlor/Cron/Http/Apache.php
    +++ b/lib/Froxlor/Cron/Http/Apache.php
    @@ -823,6 +823,7 @@ class Apache extends HttpConfigBase
                                            $modrew_red = ' [R=' . $code . ';L,NE]';
                                    }
    
    +                               $vhost_content .= $this->getLogfiles($domain);
                                    // redirect everything, not only root-directory, #541
                                    $vhost_content .= '  <IfModule mod_rewrite.c>' . "\n";
                                    $vhost_content .= '    RewriteEngine On' . "\n";

     

  4. Sieht doch alles fein aus, sogar TLSv1.3, da würde ich ja fast behaupten, dass vllt die zwei server die nichts mehr an dich senden können ggfls veraltet sind oder falsch konfiguriert. Offenbar haben die ja eine änderung, wenn deine logs da trotz anonymisierung irgendwie stimmen: IPMAIL1.FremderMailserver <> IPMAIL2.FremderMailserver

    Aber zeig doch bitte hierfür auch mal deine postfix config in bezug auf TLS (alles bitte), also z.b.:
     

    ### TLS settings
    ###
    ## TLS for outgoing mails from the server to another server
    smtp_tls_security_level = may
    smtp_tls_note_starttls_offer = yes
    ## TLS for email client
    smtpd_tls_security_level = may
    smtpd_tls_key_file = /root/.acme.sh/domain/domain.key
    smtpd_tls_cert_file = /root/.acme.sh/domain/fullchain.cer
    smtpd_tls_CAfile = /root/.acme.sh/domain/ca.cer
    smtpd_tls_loglevel = 1
    smtpd_tls_received_header = yes
    smtp_use_tls = yes
    smtpd_use_tls = yes
    smtpd_tls_session_cache_timeout = 3600s
    tls_random_source = dev:/dev/urandom
    smtpd_tls_mandatory_ciphers = high
    smtpd_tls_mandatory_exclude_ciphers = aNULL, MD5

     

×
×
  • Create New...