recipiez 0.6.3 → 0.6.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/recipiez/version.rb +1 -1
- data/recipes/templates/nginx_vhost.erb +3 -3
- metadata +3 -3
data/lib/recipiez/version.rb
CHANGED
@@ -9,15 +9,15 @@ upstream <%= application %> {
|
|
9
9
|
server {
|
10
10
|
|
11
11
|
listen <%= web_port ? web_port : 80 %>;
|
12
|
-
server_name www.<%=
|
13
|
-
rewrite ^(.*) http://<%=
|
12
|
+
server_name www.<%= app_domain %>;
|
13
|
+
rewrite ^(.*) http://<%= app_domain %>$1 permanent;
|
14
14
|
}
|
15
15
|
|
16
16
|
|
17
17
|
server {
|
18
18
|
|
19
19
|
listen <%= web_port ? web_port : 80 %>;
|
20
|
-
server_name <%=
|
20
|
+
server_name <%= app_domain %>;
|
21
21
|
|
22
22
|
access_log <%= current_path %>/log/access.log;
|
23
23
|
error_log <%= current_path %>/log/error.log;
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 6
|
8
|
-
-
|
9
|
-
version: 0.6.
|
8
|
+
- 4
|
9
|
+
version: 0.6.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Alastair Brunton
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2014-06-
|
17
|
+
date: 2014-06-04 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|