smartcloud 0.0.54 → 0.0.55
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0022dbdf5e91fd1e279ec7acdfc9f02f3814c663e7b4de874e16e8371d8303e1
|
4
|
+
data.tar.gz: 26ffbfbf1ee1cd71c9d441ed595c8cc1d5a4eaeda9eb41443cd3983d8768cb10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0449ee35ae4b396344021cc5eb8fa2e39bfc23c5f9914e6716b59e0e9786513665a3ff2b784c4cbafdff13791b15fcb9f2db978a2f72fb6666f391d2c50205d6'
|
7
|
+
data.tar.gz: 6e5cd7f788f12d41bc4c28b977681057b6436bb52b97fb322377ed08c98d0b951b9ef6d741f5b9c6a43dcd5a5678056dc1fca1c3cd1d55113765434ce7a75072
|
@@ -2,6 +2,7 @@ client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doe
|
|
2
2
|
|
3
3
|
include fastcgi_params; # Include the default fastcgi configs
|
4
4
|
|
5
|
+
fastcgi_param SCRIPT_FILENAME /usr/libexec/git-core/git-http-backend; # Tells fastcgi to pass the request to the git http backend executable.
|
5
6
|
fastcgi_param PATH_INFO $uri; # Takes the capture group from our location directive and gives git that.
|
6
7
|
fastcgi_param REMOTE_USER $remote_user; # Forward REMOTE_USER as we want to know when we are authenticated
|
7
8
|
|
@@ -26,12 +26,6 @@ RUN apk add --update git && \
|
|
26
26
|
|
27
27
|
RUN gem install smartcloud --no-rdoc --no-ri
|
28
28
|
|
29
|
-
# Setting environment variables for git-http-backend to use pre-receive hook
|
30
|
-
# These will be used by fcgiwrap for fcgi
|
31
|
-
ENV SCRIPT_FILENAME=/usr/libexec/git-core/git-http-backend
|
32
|
-
ENV GIT_HTTP_EXPORT_ALL=""
|
33
|
-
ENV ABC=/uus/asdasd
|
34
|
-
|
35
29
|
# launch fcgiwrap via spawn-fcgi; launch nginx in the foreground
|
36
30
|
# so the container doesn't die on us; supposedly we should be
|
37
31
|
# using supervisord or something like that instead, but this
|
@@ -24,6 +24,7 @@ module Smartcloud
|
|
24
24
|
--env LETSENCRYPT_EMAIL=#{Smartcloud.config.sysadmin_email} \
|
25
25
|
--env LETSENCRYPT_TEST=#{Smartcloud.config.letsencrypt_test} \
|
26
26
|
--env GIT_PROJECT_ROOT=#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner/apps/repositories \
|
27
|
+
--env GIT_HTTP_EXPORT_ALL="" \
|
27
28
|
--expose='9000' \
|
28
29
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/config:#{Smartcloud.config.user_home_path}/.smartcloud/config' \
|
29
30
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner:#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner' \
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smartcloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.55
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timeboard
|
@@ -49,7 +49,6 @@ files:
|
|
49
49
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-runner/apps/repositories/.keep
|
50
50
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-runner/buildpacks/rails/gems/.keep
|
51
51
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-runner/pre-receive
|
52
|
-
- lib/smartcloud/templates/dotsmartcloud/grids/grid-runner/spawn-fcgi.conf
|
53
52
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-solr/data/.keep
|
54
53
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-solr/data/README.txt
|
55
54
|
- lib/smartcloud/templates/dotsmartcloud/grids/grid-solr/data/configsets/_default/conf/lang/contractions_ca.txt
|
@@ -1,77 +0,0 @@
|
|
1
|
-
# Copyright 1999-2009 Gentoo Foundation
|
2
|
-
# Distributed under the terms of the GNU General Public License v2
|
3
|
-
# $Header: /var/cvsroot/gentoo-x86/www-servers/spawn-fcgi/files/spawn-fcgi.confd,v 1.6 2009/09/28 08:38:02 bangert Exp $
|
4
|
-
|
5
|
-
# DO NOT MODIFY THIS FILE DIRECTLY! CREATE A COPY AND MODIFY THAT INSTEAD!
|
6
|
-
|
7
|
-
# The FCGI process can be made available through a filesystem socket or
|
8
|
-
# through a inet socket. One and only one of the two types must be choosen.
|
9
|
-
# Default is the inet socket.
|
10
|
-
|
11
|
-
# The filename specified by
|
12
|
-
# FCGI_SOCKET will be suffixed with a number for each child process, for
|
13
|
-
# example, fcgi.socket-1.
|
14
|
-
# Leave empty to use an IP socket (default). See below. Enabling this,
|
15
|
-
# disables the IP socket.
|
16
|
-
#
|
17
|
-
#FCGI_SOCKET=
|
18
|
-
|
19
|
-
# When using FCGI_PORT, connections will only be accepted from the following
|
20
|
-
# address. The default is 127.0.0.1. Use 0.0.0.0 to bind to all addresses.
|
21
|
-
#
|
22
|
-
#FCGI_ADDRESS=
|
23
|
-
|
24
|
-
# The port specified by FCGI_PORT is the port used
|
25
|
-
# by the first child process. If this is set to 1234 then subsequent child
|
26
|
-
# processes will use 1235, 1236, etc.
|
27
|
-
# The default is 1234 if FCGI_SOCKET is not set
|
28
|
-
#
|
29
|
-
#FCGI_PORT=
|
30
|
-
|
31
|
-
# The path to your FastCGI application. These sometimes carry the .fcgi
|
32
|
-
# extension but not always. For PHP, you should usually point this to
|
33
|
-
# /usr/bin/php-cgi.
|
34
|
-
#
|
35
|
-
#FCGI_PROGRAM=
|
36
|
-
|
37
|
-
# The number of child processes to spawn. The default is 1.
|
38
|
-
#
|
39
|
-
#FCGI_CHILDREN=
|
40
|
-
|
41
|
-
# If you want to run your application inside a chroot then specify the
|
42
|
-
# directory here. Leave this blank otherwise.
|
43
|
-
#
|
44
|
-
#FCGI_CHROOT=
|
45
|
-
|
46
|
-
# If you want to run your application from a specific directiory specify
|
47
|
-
# it here. Leave this blank otherwise.
|
48
|
-
#
|
49
|
-
#FCGI_CHDIR=
|
50
|
-
|
51
|
-
# The user and group to run your application as. If you do not specify these,
|
52
|
-
# the application will be run as root:root.
|
53
|
-
#
|
54
|
-
#FCGI_USER=
|
55
|
-
#FCGI_GROUP=
|
56
|
-
|
57
|
-
# Additional options you might want to pass to spawn-fcgi
|
58
|
-
#
|
59
|
-
#FCGI_EXTRA_OPTIONS=
|
60
|
-
|
61
|
-
# If your application requires additional environment variables, you may
|
62
|
-
# specify them here. See PHP example below.
|
63
|
-
#
|
64
|
-
#ALLOWED_ENV="PATH"
|
65
|
-
|
66
|
-
# PHP ONLY :: These two options are specific to PHP. The first is the number
|
67
|
-
# of child processes to spawn. The second is the number of requests to be
|
68
|
-
# served by a single PHP process before it is restarted.
|
69
|
-
#
|
70
|
-
#PHP_FCGI_CHILDREN=5
|
71
|
-
#PHP_FCGI_MAX_REQUESTS=500
|
72
|
-
#
|
73
|
-
# For this to work you would set
|
74
|
-
# ALLOWED_ENV="PATH PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS"
|
75
|
-
|
76
|
-
# GIT ONLY :: Environment Variables
|
77
|
-
ALLOWED_ENV="GIT_PROJECT_ROOT"
|