Hello everybody,

I want to use ssl with tracd using httpd. Proxy works without ssl. With ssl 
I am always redirected to the Apache landing page "Testing 1 2 3". Anybody 
ideas what I am missing here?

ProxyRequests Off

<Proxy http://localhost:8321/*>
  Order deny,allow
  Allow from all
</Proxy>

<VirtualHost *:80>
  Redirect permanent / http://192.168.1.109/
  ServerName centos-server-2
</VirtualHost>

<VirtualHost *:443>
    ProxyPreserveHost On
    SSLEngine on

    SSLCertificateFile    /etc/ssl/certs/pub.cert
    SSLCertificateKeyFile /etc/ssl/priv.key

    # Servers to proxy the connection, or;
    # List of application servers:
    # Usage:
    # ProxyPass / http://[IP Addr.]:[port]/
    # ProxyPassReverse / http://[IP Addr.]:[port]/
    # Example:
    ProxyPass / http://localhost:8321/
    ProxyPassReverse / http://localhost:8321/

    ServerName centos-server-2
</VirtualHost>


Using centos 7 minimal, with apache 2.4 and trac 1.2

Thanks for your help.

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to