Hi,

I cannot quite figure this out, but it seems possible.

I have a single apache server (apache.mydomain.com) and a number of
(tomcat) application servers (as1..com, as2..com etc.)

I have apache configured so https://apache...com/as1 gets
(proxy)passed to as1.com:8080/as1.

This is working fine, for example:

-- start conf

<VirtualHost _default_:443>
        ServerAdmin test-...@xxx


        <Proxy *>
                Order deny,allow
                Allow from all
        </Proxy>

        ProxyRequests       Off
        ProxyPreserveHost On

        ProxyPass /as1 http://as1...com:8080/as1
        ProxyPassReverse /as2 http://as1...com:8080/as1

        ProxyPass /as2 http://as2...com:8080/as2
        ProxyPassReverse /as2 http://as2...com:8080/as2

--end conf

Note: I cannot have multiple vhosts as they are all part of a single
host.

My question is what should I put in the puppet nodes for apache.pp and
as1.pp, as2.pp etc. to get this to work successfully?

I have looked at exported resources but that seems to only work for
individual files.  I could create a bash script which generates the
apache config using one proxyPass for each file where the file name is
the name of context path but blurgh.

I am sure I have missed something obvious ;)  Any pointers?

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to