rails_pwnerer 0.7.2 → 0.7.3

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.7.3. Another bugfix for HTTP / HTTPS mixed configurations.
2
+
1
3
  v0.7.2. Bugfix in the HTTP / HTTPS mixed support.
2
4
 
3
5
  v0.7.1. Allow SSL apps to listen on non-SSL port as well.
@@ -34,7 +34,6 @@ class RailsPwnerer::App::NginxConfig
34
34
  listen #{app_port}#{app_config[:ssl_key] ? ' ssl' : ''};
35
35
  #{(app_config[:ssl_key] && app_config[:non_ssl_port] != 0) ? "listen #{app_config[:non_ssl_port]};" : "" }
36
36
  charset utf-8;
37
- #{app_config[:ssl_key] ? 'ssl on;' : ''}
38
37
  #{app_config[:ssl_key] ? "ssl_certificate #{app_config[:ssl_cert]};" : ''}
39
38
  #{app_config[:ssl_key] ? "ssl_certificate_key #{app_config[:ssl_key]};" : ''}
40
39
  #{(dns_names.empty? ? '' : "server_name " + dns_names.join(' ') + ";")}
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "rails_pwnerer"
5
- s.version = "0.7.2"
5
+ s.version = "0.7.3"
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"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_pwnerer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: