rails_pwnerer 0.6.83 → 0.6.84

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.84. Configured nginx to set cache headers for static files.
2
+
1
3
  v0.6.83. Added zerg_support dependency.
2
4
 
3
5
  v0.6.82. Switched to zerg_support for process management + mysql encoding bugfix.
@@ -41,13 +41,16 @@ class RailsPwnerer::App::NginxConfig
41
41
  client_max_body_size #{app_config[:max_request_mb]}M;
42
42
  location / {
43
43
  if (-f $request_filename) {
44
+ expires max;
44
45
  break;
45
46
  }
46
47
 
47
48
  if (-f $request_filename/index.html) {
49
+ expires max;
48
50
  rewrite (.*) $1/index.html break;
49
51
  }
50
52
  if (-f $request_filename.html) {
53
+ expires max;
51
54
  rewrite (.*) $1.html break;
52
55
  }
53
56
 
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rails_pwnerer}
5
- s.version = "0.6.83"
5
+ s.version = "0.6.84"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Victor Costan"]
9
- s.date = %q{2010-10-26}
9
+ s.date = %q{2011-01-30}
10
10
  s.default_executable = %q{bin/rpwn}
11
11
  s.description = %q{Rails deployment hack.}
12
12
  s.email = %q{victor@costan.us}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 161
4
+ hash: 175
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 83
10
- version: 0.6.83
9
+ - 84
10
+ version: 0.6.84
11
11
  platform: ruby
12
12
  authors:
13
13
  - Victor Costan
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-26 00:00:00 -04:00
18
+ date: 2011-01-30 00:00:00 -05:00
19
19
  default_executable: bin/rpwn
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency