foreman-export-nginx 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/data/export/nginx/nginx.erb +1 -2
- data/foreman-export-nginx.gemspec +1 -1
- metadata +1 -1
data/data/export/nginx/nginx.erb
CHANGED
@@ -5,8 +5,7 @@ upstream <%= app %> {
|
|
5
5
|
}
|
6
6
|
|
7
7
|
server {
|
8
|
-
access_log <%= log %>/nginx-access.log combined buffer=
|
9
|
-
error_log <%= log %>/nginx-error.log stderr;
|
8
|
+
access_log <%= log %>/nginx-access.log combined buffer=0k;
|
10
9
|
|
11
10
|
listen 80;
|
12
11
|
server_name <%= app %>.<%= ENV['BASE_DOMAIN'] %>;
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "foreman-export-nginx"
|
7
|
-
gem.version = '0.0.
|
7
|
+
gem.version = '0.0.2'
|
8
8
|
gem.authors = ["Pete Keen"]
|
9
9
|
gem.email = ["pete@bugsplat.info"]
|
10
10
|
gem.description = %q{Export Nginx configs using Foreman}
|