rails_pwnerer 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/lib/rails_pwnerer/app/nginx_config.rb +0 -1
- data/rails_pwnerer.gemspec +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
@@ -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(' ') + ";")}
|
data/rails_pwnerer.gemspec
CHANGED