How to selectively disable redirect to login

I have RT 4.4.7 and want to have Let’s Encrypt create a SSL Cert. Let’s Encrypt wants to use a challange token to verify the page, but RT is redirecting to the login page instead. How do I fix things so RT does not do that?

I’m using mod_md to handle Let’s Encrypt.

The following should be everything I’m using to manage SSL.

MDomain rt.voskamp.ca
MDStoreDir /etc/pki/tls/apache.md
MDCertificateAgreement https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf
MDRequireHttps permanent
MDPortMap 80:80 443:443
MDStapling on

I inserted this into RT’s Apache site conf files:

    <Location /.well-known/acme-challenge/>
        SetHandler send-as-is
        Options -Indexes
    </location>
1 Like