smartcloud 0.0.49 → 0.0.50
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74096602e5173c5232b113420a890389588262665824552831c5f3e59901b08c
|
4
|
+
data.tar.gz: bb34c4645ea708a102619bbe5adae2afa11a0da712adcd26fe925b4a22025b58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3dfa4caadcc578d92e6eeba23c37dfde03b2e504a68e599f9e3c6946d37cb66fad06745380419a7992db94987e175262f5968ae1fad7701657d7634f1e64486
|
7
|
+
data.tar.gz: 8741161b75e91f00064830daa76f37047b71fadb420a37f6ccfa10a0a73a539bcf4508be7232fb7642c02df5b4cd3036cae049c3dafaac454db8cc54e34a4826
|
@@ -8,4 +8,4 @@ fastcgi_param GIT_HTTP_EXPORT_ALL "";
|
|
8
8
|
fastcgi_param PATH_INFO $uri; # Takes the capture group from our location directive and gives git that.
|
9
9
|
fastcgi_param REMOTE_USER $remote_user; # Forward REMOTE_USER as we want to know when we are authenticated
|
10
10
|
|
11
|
-
# IMPORTANT NOTE: Other required fastcgi_params have been defined
|
11
|
+
# IMPORTANT NOTE: Other required fastcgi_params have been defined as environment variables in the runner container and hence need not be passed here.
|
@@ -0,0 +1,77 @@
|
|
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"
|
@@ -27,6 +27,7 @@ module Smartcloud
|
|
27
27
|
--expose='9000' \
|
28
28
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/config:#{Smartcloud.config.user_home_path}/.smartcloud/config' \
|
29
29
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner:#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner' \
|
30
|
+
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner/spawn-fcgi.conf:/etc/conf.d/spawn-fcgi' \
|
30
31
|
--volume='/var/run/docker.sock:/var/run/docker.sock' \
|
31
32
|
--user=#{File.basename(Smartcloud.config.user_home_path)} \
|
32
33
|
--workdir='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner/apps' \
|
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.50
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Timeboard
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- lib/smartcloud/grids/grid-nginx/nginx.tmpl
|
33
33
|
- lib/smartcloud/grids/grid-runner/Dockerfile
|
34
34
|
- lib/smartcloud/grids/grid-runner/buildpacks/rails/Dockerfile
|
35
|
+
- lib/smartcloud/grids/grid-runner/spawn-fcgi.conf
|
35
36
|
- lib/smartcloud/grids/grid-solr/docker-entrypoint-initdb.d/.keep
|
36
37
|
- lib/smartcloud/grids/grid-solr/sunspot/conf/schema.xml
|
37
38
|
- lib/smartcloud/grids/grid-solr/sunspot/conf/solrconfig.xml
|