~ubuntu-branches/ubuntu/precise/puppet/precise-proposed

« back to all changes in this revision

Viewing changes to .pc/debianize_apache2.conf/ext/rack/files/apache2.conf

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-02-08 00:28:43 UTC
  • mfrom: (1.1.22 upstream) (3.1.19 sid)
  • Revision ID: james.westby@ubuntu.com-20110208002843-1xrv7w3vqblrn15m
Tags: 2.6.4-2ubuntu1
* Merge from debian unstable.  Remaining changes:
  - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
    set the location of the CRL in apache2 configuration. Fix apache2 
    configuration on upgrade as well (LP: #641001)
  - move all puppet dependencies to puppet-common since all the code 
    actually located in puppet-common.
  - move libagueas from a recommend to a dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
# you probably want to tune these settings
3
 
PassengerHighPerformance on
4
 
PassengerMaxPoolSize 12
5
 
PassengerPoolIdleTime 1500
6
 
# PassengerMaxRequests 1000
7
 
PassengerStatThrottleRate 120
8
 
RackAutoDetect Off
9
 
RailsAutoDetect Off
10
 
 
11
 
Listen 8140
12
 
 
13
 
<VirtualHost *:8140>
14
 
        SSLEngine on
15
 
        SSLProtocol -ALL +SSLv3 +TLSv1
16
 
        SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP
17
 
 
18
 
        SSLCertificateFile      /etc/puppet/ssl/certs/squigley.namespace.at.pem
19
 
        SSLCertificateKeyFile   /etc/puppet/ssl/private_keys/squigley.namespace.at.pem
20
 
        SSLCertificateChainFile /etc/puppet/ssl/ca/ca_crt.pem
21
 
        SSLCACertificateFile    /etc/puppet/ssl/ca/ca_crt.pem
22
 
        # If Apache complains about invalid signatures on the CRL, you can try disabling
23
 
        # CRL checking by commenting the next line, but this is not recommended.
24
 
        SSLCARevocationFile     /etc/puppet/ssl/ca/ca_crl.pem
25
 
        SSLVerifyClient optional
26
 
        SSLVerifyDepth  1
27
 
        SSLOptions +StdEnvVars
28
 
 
29
 
        DocumentRoot /etc/puppet/rack/public/
30
 
        RackBaseURI /
31
 
        <Directory /etc/puppet/rack/>
32
 
                Options None
33
 
                AllowOverride None
34
 
                Order allow,deny
35
 
                allow from all
36
 
        </Directory>
37
 
</VirtualHost>
38