deprec 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,7 +48,7 @@ Capistrano.configuration(:must_exist).load do
48
48
  buffer += ssl_buffer
49
49
  end
50
50
 
51
- put buffer, "#{shared_path}/httpd.conf"
51
+ put buffer, "#{shared_path}/httpd.conf", :mode => 0444
52
52
  send(run_method, "cp #{shared_path}/httpd.conf #{apache_conf}")
53
53
  delete "#{shared_path}/httpd.conf"
54
54
  end
@@ -58,10 +58,14 @@ SSLEngine on
58
58
  SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
59
59
 
60
60
  # Server Certificate
61
- SSLCertificateFile /etc/httpd/conf/ssl.crt/<%= domain %>.crt
61
+ SSLCertificateFile /usr/local/apache2/conf/ssl.crt/<%= domain %>.crt
62
62
 
63
63
  # Server Private Key
64
- SSLCertificateKeyFile /etc/httpd/conf/ssl.key/<%= domain %>.key
64
+ SSLCertificateKeyFile /usr/local/apache2/conf/ssl.key/<%= domain %>.key
65
+
66
+ # XXX put this into deploy.rb
67
+ ## Intermediate keys
68
+ # SSLCertificateChainFile /usr/local/apache2/conf/ssl.crt/<%= domain %>-chainfile.crt
65
69
 
66
70
  BrowserMatch ".*MSIE.*" \
67
71
  nokeepalive ssl-unclean-shutdown \
@@ -57,7 +57,3 @@
57
57
  ErrorLog logs/<%= domain %>-error_log
58
58
  CustomLog logs/<%= domain %>-access_log combined
59
59
  </VirtualHost>
60
-
61
- <% if apache_ssl_enabled %>
62
- Include "<%= apache_ssl_config %>"
63
- <% end %>
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: deprec
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.2.0
7
- date: 2006-12-22 00:00:00 +11:00
6
+ version: 1.2.1
7
+ date: 2006-12-27 00:00:00 +11:00
8
8
  summary: deployment recipes for capistrano
9
9
  require_paths:
10
10
  - lib