passenger 5.1.10 → 5.1.11
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +18 -0
- data/Rakefile +20 -17
- data/bin/passenger-install-apache2-module +14 -11
- data/build/agent.rb +45 -18
- data/build/apache2.rb +32 -16
- data/build/basics.rb +29 -40
- data/build/common_library.rb +70 -54
- data/build/cxx_tests.rb +34 -43
- data/build/integration_tests.rb +10 -10
- data/build/misc.rb +6 -6
- data/build/node_tests.rb +1 -2
- data/build/oxt_tests.rb +7 -5
- data/build/packaging.rb +11 -441
- data/build/ruby_extension.rb +1 -1
- data/build/ruby_tests.rb +1 -2
- data/build/support/cplusplus.rb +6 -5
- data/build/support/cxx_dependency_map.rb +357 -833
- data/build/support/general.rb +23 -1
- data/build/test_basics.rb +3 -28
- data/dev/ci/tests/rpm/Jenkinsfile +68 -0
- data/dev/ci/tests/rpm/run +63 -0
- data/dev/ci/tests/source-packaging/run +1 -1
- data/dev/ci/tests/source-packaging/setup +1 -1
- data/doc/{Packaging.txt.md → Packaging.md} +0 -0
- data/resources/templates/apache2/deployment_example.txt.erb +2 -2
- data/resources/templates/apache2/multiple_apache_installations_detected.txt.erb +2 -2
- data/resources/templates/nginx/deployment_example.txt.erb +1 -1
- data/resources/templates/standalone/mass_deployment_default_server.erb +2 -2
- data/resources/templates/standalone/server.erb +2 -2
- data/src/agent/AgentMain.cpp +0 -4
- data/src/agent/Core/CoreMain.cpp +88 -5
- data/src/agent/Core/SpawningKit/Spawner.h +2 -1
- data/src/agent/Shared/Fundamentals/AbortHandler.cpp +1109 -0
- data/src/agent/Shared/Fundamentals/AbortHandler.h +63 -0
- data/src/agent/Shared/Fundamentals/Implementation.cpp +7 -0
- data/src/agent/Shared/Fundamentals/Initialization.cpp +614 -0
- data/src/agent/Shared/{Base.h → Fundamentals/Initialization.h} +23 -14
- data/src/agent/Shared/Fundamentals/Utils.cpp +127 -0
- data/src/agent/Shared/Fundamentals/Utils.h +46 -0
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +1 -1
- data/src/agent/Watchdog/CoreWatcher.cpp +3 -1
- data/src/agent/Watchdog/InstanceDirToucher.cpp +90 -53
- data/src/agent/Watchdog/WatchdogMain.cpp +13 -29
- data/src/apache2_module/Hooks.cpp +4 -1
- data/src/cxx_supportlib/ConfigKit/Store.h +32 -5
- data/src/cxx_supportlib/Constants.h +1 -2
- data/src/cxx_supportlib/Crypto.cpp +2 -1
- data/src/cxx_supportlib/Hooks.h +16 -37
- data/src/cxx_supportlib/LoggingKit/Context.h +22 -0
- data/src/cxx_supportlib/LoggingKit/Forward.h +1 -0
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +106 -22
- data/src/cxx_supportlib/ProcessManagement/Ruby.cpp +106 -0
- data/src/{agent/UstRouter/FileSink.h → cxx_supportlib/ProcessManagement/Ruby.h} +23 -47
- data/src/cxx_supportlib/ProcessManagement/Spawn.cpp +199 -0
- data/src/cxx_supportlib/ProcessManagement/Spawn.h +150 -0
- data/src/cxx_supportlib/ProcessManagement/Utils.cpp +459 -0
- data/src/cxx_supportlib/ProcessManagement/Utils.h +107 -0
- data/src/cxx_supportlib/Utils.cpp +41 -561
- data/src/cxx_supportlib/Utils.h +0 -68
- data/src/cxx_supportlib/Utils/AsyncSignalSafeUtils.h +187 -0
- data/src/cxx_supportlib/Utils/ProcessMetricsCollector.h +14 -2
- data/src/cxx_supportlib/WatchdogLauncher.h +2 -12
- data/src/cxx_supportlib/oxt/dynamic_thread_group.hpp +2 -2
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json-forwards.h +4 -0
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json.h +16 -1
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +12 -9
- data/src/cxx_supportlib/vendor-modified/libev/ev++.h +4 -4
- data/src/cxx_supportlib/vendor-modified/libev/ev.h +3 -3
- data/src/nginx_module/CacheLocationConfig.c +0 -75
- data/src/nginx_module/CacheLocationConfig.c.cxxcodebuilder +1 -0
- data/src/nginx_module/Configuration.c +0 -1
- data/src/nginx_module/Configuration.h +0 -1
- data/src/nginx_module/ConfigurationCommands.c +1 -1
- data/src/nginx_module/ContentHandler.c +0 -1
- data/src/nginx_module/ContentHandler.h +0 -1
- data/src/nginx_module/CreateLocationConfig.c +0 -5
- data/src/nginx_module/CreateLocationConfig.c.cxxcodebuilder +1 -0
- data/src/nginx_module/LocationConfig.h +0 -4
- data/src/nginx_module/LocationConfig.h.cxxcodebuilder +2 -1
- data/src/nginx_module/MergeLocationConfig.c +0 -12
- data/src/nginx_module/MergeLocationConfig.c.cxxcodebuilder +1 -0
- data/src/nginx_module/ngx_http_passenger_module.h +0 -1
- data/src/ruby_supportlib/phusion_passenger.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +20 -11
- data/src/ruby_supportlib/phusion_passenger/config/api_call_command.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/config/reopen_logs_command.rb +0 -1
- data/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb +10 -3
- data/src/ruby_supportlib/phusion_passenger/console_text_template.rb +3 -1
- data/src/ruby_supportlib/phusion_passenger/constants.rb +0 -1
- data/src/ruby_supportlib/phusion_passenger/debug_logging.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +32 -6
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +0 -1
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -4
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +101 -20
- data/src/ruby_supportlib/phusion_passenger/platform_info/apache_detector.rb +21 -9
- data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +34 -31
- data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +3 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/apache2.rb +2 -14
- data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +40 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/app_finder.rb +15 -14
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/standalone/config_utils.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +8 -3
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +19 -18
- data/src/ruby_supportlib/phusion_passenger/standalone/stop_command.rb +6 -1
- data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +17 -1
- metadata +19 -97
- data/build/documentation.rb +0 -70
- data/doc/CloudLicensingConfiguration.html +0 -172
- data/doc/CloudLicensingConfiguration.txt.md +0 -3
- data/doc/Packaging.html +0 -488
- data/doc/Security of user switching support.idmap.txt +0 -34
- data/doc/Security of user switching support.txt +0 -197
- data/doc/ServerOptimizationGuide.html +0 -172
- data/doc/ServerOptimizationGuide.txt.md +0 -3
- data/doc/images/by_sa.png +0 -0
- data/doc/images/cloud_licensing_batch_job.png +0 -0
- data/doc/images/code_walkthrough.jpg +0 -0
- data/doc/images/direct_spawning.png +0 -0
- data/doc/images/direct_spawning.svg +0 -251
- data/doc/images/glyphicons-halflings-white.png +0 -0
- data/doc/images/glyphicons-halflings.png +0 -0
- data/doc/images/icons/README +0 -5
- data/doc/images/icons/callouts/1.png +0 -0
- data/doc/images/icons/callouts/10.png +0 -0
- data/doc/images/icons/callouts/11.png +0 -0
- data/doc/images/icons/callouts/12.png +0 -0
- data/doc/images/icons/callouts/13.png +0 -0
- data/doc/images/icons/callouts/14.png +0 -0
- data/doc/images/icons/callouts/15.png +0 -0
- data/doc/images/icons/callouts/2.png +0 -0
- data/doc/images/icons/callouts/3.png +0 -0
- data/doc/images/icons/callouts/4.png +0 -0
- data/doc/images/icons/callouts/5.png +0 -0
- data/doc/images/icons/callouts/6.png +0 -0
- data/doc/images/icons/callouts/7.png +0 -0
- data/doc/images/icons/callouts/8.png +0 -0
- data/doc/images/icons/callouts/9.png +0 -0
- data/doc/images/icons/caution.png +0 -0
- data/doc/images/icons/example.png +0 -0
- data/doc/images/icons/home.png +0 -0
- data/doc/images/icons/important.png +0 -0
- data/doc/images/icons/next.png +0 -0
- data/doc/images/icons/note.png +0 -0
- data/doc/images/icons/prev.png +0 -0
- data/doc/images/icons/tip.png +0 -0
- data/doc/images/icons/up.png +0 -0
- data/doc/images/icons/warning.png +0 -0
- data/doc/images/many_web_framework_protocols.png +0 -0
- data/doc/images/passenger_architecture.png +0 -0
- data/doc/images/passenger_architecture.svg +0 -385
- data/doc/images/passenger_architecture_overview.png +0 -0
- data/doc/images/passenger_core_architecture.png +0 -0
- data/doc/images/passenger_nodejs_architecture.svg +0 -558
- data/doc/images/phusion_banner.png +0 -0
- data/doc/images/rack.png +0 -0
- data/doc/images/smart_spawning.png +0 -0
- data/doc/images/smart_spawning.svg +0 -323
- data/doc/images/spawn_server_architecture.png +0 -0
- data/doc/images/spawn_server_architecture.svg +0 -655
- data/doc/images/spawning_preparation_work.png +0 -0
- data/doc/images/startup_sequence.png +0 -0
- data/doc/images/typical_isolated_web_application.png +0 -0
- data/doc/images/typical_isolated_web_application.svg +0 -213
- data/doc/users_guide_snippets/alternative_for_flying_passenger.txt +0 -1
- data/doc/users_guide_snippets/analysis_and_system_maintenance.txt +0 -61
- data/doc/users_guide_snippets/appendix_a_about.txt +0 -13
- data/doc/users_guide_snippets/appendix_b_terminology.txt +0 -71
- data/doc/users_guide_snippets/appendix_c_spawning_methods.txt +0 -36
- data/doc/users_guide_snippets/deployment_basics.txt +0 -37
- data/doc/users_guide_snippets/enterprise_only.txt +0 -1
- data/doc/users_guide_snippets/environment_variables.txt +0 -44
- data/doc/users_guide_snippets/global_queueing_explained.txt +0 -74
- data/doc/users_guide_snippets/installation.txt +0 -228
- data/doc/users_guide_snippets/installation/run_installer.txt +0 -58
- data/doc/users_guide_snippets/installation/verify_running_epilogue.txt +0 -6
- data/doc/users_guide_snippets/passenger_spawn_method.txt +0 -37
- data/doc/users_guide_snippets/rackup_specifications.txt +0 -1
- data/doc/users_guide_snippets/rvm_helper_tool.txt +0 -44
- data/doc/users_guide_snippets/since_version.txt +0 -1
- data/doc/users_guide_snippets/support_information.txt +0 -8
- data/doc/users_guide_snippets/tips.txt +0 -302
- data/doc/users_guide_snippets/troubleshooting/default.txt +0 -48
- data/doc/users_guide_snippets/troubleshooting/rails.txt +0 -59
- data/doc/users_guide_snippets/under_the_hood/page_caching_support.txt +0 -24
- data/doc/users_guide_snippets/under_the_hood/relationship_with_ruby.txt +0 -10
- data/doc/users_guide_snippets/where_to_get_support.txt +0 -9
- data/src/agent/Shared/Base.cpp +0 -1678
- data/src/agent/UstRouter/ApiServer.h +0 -292
- data/src/agent/UstRouter/Client.h +0 -112
- data/src/agent/UstRouter/Controller.h +0 -1309
- data/src/agent/UstRouter/LogSink.h +0 -145
- data/src/agent/UstRouter/OptionParser.h +0 -180
- data/src/agent/UstRouter/RemoteSender.h +0 -853
- data/src/agent/UstRouter/RemoteSink.h +0 -145
- data/src/agent/UstRouter/Transaction.h +0 -278
- data/src/agent/UstRouter/UstRouterMain.cpp +0 -681
- data/src/agent/Watchdog/UstRouterWatcher.cpp +0 -80
- data/src/ruby_supportlib/phusion_passenger/platform_info/macos.rb +0 -45
Binary file
|
Binary file
|
data/doc/images/icons/README
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/doc/images/icons/home.png
DELETED
Binary file
|
Binary file
|
data/doc/images/icons/next.png
DELETED
Binary file
|
data/doc/images/icons/note.png
DELETED
Binary file
|
data/doc/images/icons/prev.png
DELETED
Binary file
|
data/doc/images/icons/tip.png
DELETED
Binary file
|
data/doc/images/icons/up.png
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,385 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
-
|
4
|
-
<svg
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
-
width="673"
|
13
|
-
height="300"
|
14
|
-
id="svg2"
|
15
|
-
sodipodi:version="0.32"
|
16
|
-
inkscape:version="0.48.5 r10040"
|
17
|
-
sodipodi:docname="passenger_architecture.svg"
|
18
|
-
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
19
|
-
version="1.0"
|
20
|
-
inkscape:export-filename="/Users/hongli/Projects/passenger/doc/images/passenger_architecture.png"
|
21
|
-
inkscape:export-xdpi="90"
|
22
|
-
inkscape:export-ydpi="90">
|
23
|
-
<defs
|
24
|
-
id="defs4">
|
25
|
-
<filter
|
26
|
-
inkscape:collect="always"
|
27
|
-
x="-0.047653846"
|
28
|
-
width="1.0953077"
|
29
|
-
y="-0.14720792"
|
30
|
-
height="1.2944158"
|
31
|
-
id="filter3347"
|
32
|
-
color-interpolation-filters="sRGB">
|
33
|
-
<feGaussianBlur
|
34
|
-
inkscape:collect="always"
|
35
|
-
stdDeviation="6.195"
|
36
|
-
id="feGaussianBlur3349" />
|
37
|
-
</filter>
|
38
|
-
<filter
|
39
|
-
inkscape:collect="always"
|
40
|
-
x="-0.082779072"
|
41
|
-
width="1.1655581"
|
42
|
-
y="-0.26366666"
|
43
|
-
height="1.5273333"
|
44
|
-
id="filter3525"
|
45
|
-
color-interpolation-filters="sRGB">
|
46
|
-
<feGaussianBlur
|
47
|
-
inkscape:collect="always"
|
48
|
-
stdDeviation="6.6568168"
|
49
|
-
id="feGaussianBlur3527" />
|
50
|
-
</filter>
|
51
|
-
<filter
|
52
|
-
inkscape:collect="always"
|
53
|
-
x="-0.096038461"
|
54
|
-
width="1.1920769"
|
55
|
-
y="-0.24508251"
|
56
|
-
height="1.490165"
|
57
|
-
id="filter3674"
|
58
|
-
color-interpolation-filters="sRGB">
|
59
|
-
<feGaussianBlur
|
60
|
-
inkscape:collect="always"
|
61
|
-
stdDeviation="5.7001074"
|
62
|
-
id="feGaussianBlur3676" />
|
63
|
-
</filter>
|
64
|
-
</defs>
|
65
|
-
<sodipodi:namedview
|
66
|
-
id="base"
|
67
|
-
pagecolor="#ffffff"
|
68
|
-
bordercolor="#666666"
|
69
|
-
borderopacity="1.0"
|
70
|
-
gridtolerance="10000"
|
71
|
-
guidetolerance="10"
|
72
|
-
objecttolerance="10"
|
73
|
-
inkscape:pageopacity="1"
|
74
|
-
inkscape:pageshadow="2"
|
75
|
-
inkscape:zoom="1"
|
76
|
-
inkscape:cx="356.69124"
|
77
|
-
inkscape:cy="197.81434"
|
78
|
-
inkscape:document-units="px"
|
79
|
-
inkscape:current-layer="layer1"
|
80
|
-
inkscape:window-width="1359"
|
81
|
-
inkscape:window-height="856"
|
82
|
-
inkscape:window-x="81"
|
83
|
-
inkscape:window-y="0"
|
84
|
-
height="255px"
|
85
|
-
width="690px"
|
86
|
-
showgrid="false"
|
87
|
-
inkscape:window-maximized="1" />
|
88
|
-
<metadata
|
89
|
-
id="metadata7">
|
90
|
-
<rdf:RDF>
|
91
|
-
<cc:Work
|
92
|
-
rdf:about="">
|
93
|
-
<dc:format>image/svg+xml</dc:format>
|
94
|
-
<dc:type
|
95
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
96
|
-
<dc:title></dc:title>
|
97
|
-
</cc:Work>
|
98
|
-
</rdf:RDF>
|
99
|
-
</metadata>
|
100
|
-
<g
|
101
|
-
inkscape:label="Layer 1"
|
102
|
-
inkscape:groupmode="layer"
|
103
|
-
id="layer1"
|
104
|
-
transform="translate(80.588234,-46.862183)">
|
105
|
-
<path
|
106
|
-
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
107
|
-
d="m 185,160.86218 0,62"
|
108
|
-
id="path3252"
|
109
|
-
inkscape:connector-curvature="0" />
|
110
|
-
<path
|
111
|
-
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
112
|
-
d="m 364.38655,223.36218 0,-32.5 -351.38655,0 0,31.5"
|
113
|
-
id="path3265"
|
114
|
-
inkscape:connector-curvature="0" />
|
115
|
-
<g
|
116
|
-
id="g3351"
|
117
|
-
transform="translate(-74,-34)">
|
118
|
-
<rect
|
119
|
-
transform="matrix(0.74039317,0,0,1.0224359,66.297144,-3.2404977)"
|
120
|
-
ry="25"
|
121
|
-
rx="34.523411"
|
122
|
-
y="99.862183"
|
123
|
-
x="109"
|
124
|
-
height="101"
|
125
|
-
width="312"
|
126
|
-
id="rect3282"
|
127
|
-
style="opacity:0.78500001;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3347)" />
|
128
|
-
<g
|
129
|
-
transform="translate(0.5,1.5)"
|
130
|
-
id="g3267">
|
131
|
-
<rect
|
132
|
-
style="fill:#98caff;fill-opacity:1;stroke:#4f90c9;stroke-width:3.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
133
|
-
id="rect2160"
|
134
|
-
width="225"
|
135
|
-
height="101"
|
136
|
-
x="146"
|
137
|
-
y="92.362183"
|
138
|
-
rx="25.000002"
|
139
|
-
ry="25" />
|
140
|
-
<text
|
141
|
-
xml:space="preserve"
|
142
|
-
style="font-size:25.89120865px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
143
|
-
x="257.86023"
|
144
|
-
y="116.91624"
|
145
|
-
id="text2162"><tspan
|
146
|
-
sodipodi:role="line"
|
147
|
-
id="tspan2164"
|
148
|
-
x="257.86023"
|
149
|
-
y="116.91624"
|
150
|
-
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;font-family:Sans;-inkscape-font-specification:Helvetica Bold">Apache/Nginx</tspan><tspan
|
151
|
-
sodipodi:role="line"
|
152
|
-
x="257.86023"
|
153
|
-
y="136.91623"
|
154
|
-
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;text-anchor:middle;font-family:Sans;-inkscape-font-specification:Helvetica Bold"
|
155
|
-
id="tspan3806">master process</tspan></text>
|
156
|
-
<g
|
157
|
-
id="g3162"
|
158
|
-
transform="translate(175,-14)">
|
159
|
-
<rect
|
160
|
-
ry="10"
|
161
|
-
rx="10"
|
162
|
-
y="163.36218"
|
163
|
-
x="-11"
|
164
|
-
height="30"
|
165
|
-
width="193"
|
166
|
-
id="rect3160"
|
167
|
-
style="fill:#bbf6ff;fill-opacity:1;stroke:none" />
|
168
|
-
<text
|
169
|
-
id="text2166"
|
170
|
-
y="182.62328"
|
171
|
-
x="3.8492508"
|
172
|
-
style="font-size:13.65985012px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
173
|
-
xml:space="preserve"><tspan
|
174
|
-
y="182.62328"
|
175
|
-
x="3.8492508"
|
176
|
-
id="tspan2168"
|
177
|
-
sodipodi:role="line">Phusion Passenger code</tspan></text>
|
178
|
-
</g>
|
179
|
-
</g>
|
180
|
-
</g>
|
181
|
-
<g
|
182
|
-
id="g3529"
|
183
|
-
transform="translate(33,-38)">
|
184
|
-
<rect
|
185
|
-
transform="matrix(0.9504893,0,0,0.9504893,23.279218,5.1572528)"
|
186
|
-
style="opacity:0.76999996;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3525)"
|
187
|
-
id="rect3523"
|
188
|
-
width="193"
|
189
|
-
height="60.593021"
|
190
|
-
x="349"
|
191
|
-
y="124.36218"
|
192
|
-
rx="22.44186"
|
193
|
-
ry="22.44186" />
|
194
|
-
<g
|
195
|
-
transform="translate(41,31)"
|
196
|
-
id="g3516">
|
197
|
-
<rect
|
198
|
-
style="fill:#baf94d;fill-opacity:1;stroke:#8adf27;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
199
|
-
id="rect3514"
|
200
|
-
width="172"
|
201
|
-
height="54"
|
202
|
-
x="317"
|
203
|
-
y="87.362183"
|
204
|
-
rx="20"
|
205
|
-
ry="20" />
|
206
|
-
<text
|
207
|
-
xml:space="preserve"
|
208
|
-
style="font-size:19.99363899px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
209
|
-
x="342.47308"
|
210
|
-
y="120.29496"
|
211
|
-
id="text2170"><tspan
|
212
|
-
sodipodi:role="line"
|
213
|
-
id="tspan2172"
|
214
|
-
x="342.47308"
|
215
|
-
y="120.29496"
|
216
|
-
style="font-size:16px">Passenger core</tspan></text>
|
217
|
-
</g>
|
218
|
-
</g>
|
219
|
-
<g
|
220
|
-
id="g3678"
|
221
|
-
transform="translate(-1.363961,-48.414214)">
|
222
|
-
<rect
|
223
|
-
transform="matrix(1.0341163,0,0,1.5994034,47.821744,-181.69881)"
|
224
|
-
ry="9.5879955"
|
225
|
-
rx="14.829157"
|
226
|
-
y="289.76028"
|
227
|
-
x="-101.60646"
|
228
|
-
height="55.818989"
|
229
|
-
width="142.44562"
|
230
|
-
id="rect3608"
|
231
|
-
style="opacity:0.72000002;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3674)" />
|
232
|
-
<rect
|
233
|
-
ry="15"
|
234
|
-
rx="14.999999"
|
235
|
-
y="270.62689"
|
236
|
-
x="-58.08823"
|
237
|
-
height="93.818993"
|
238
|
-
width="142.44562"
|
239
|
-
id="rect2182"
|
240
|
-
style="fill:#ffe99b;fill-opacity:1;stroke:#ffb63e;stroke-width:2.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
241
|
-
<text
|
242
|
-
id="text2178"
|
243
|
-
y="293.17538"
|
244
|
-
x="13.431603"
|
245
|
-
style="font-size:15.85331345px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
246
|
-
xml:space="preserve"><tspan
|
247
|
-
y="293.17538"
|
248
|
-
x="13.431602"
|
249
|
-
id="tspan2180"
|
250
|
-
sodipodi:role="line">Web server</tspan><tspan
|
251
|
-
y="312.99203"
|
252
|
-
x="13.431602"
|
253
|
-
sodipodi:role="line"
|
254
|
-
id="tspan3808">worker process</tspan></text>
|
255
|
-
<rect
|
256
|
-
ry="6.3333335"
|
257
|
-
rx="6.679687"
|
258
|
-
y="327.45837"
|
259
|
-
x="-47.724266"
|
260
|
-
height="25"
|
261
|
-
width="121.5"
|
262
|
-
id="rect3554"
|
263
|
-
style="fill:#fffeda;fill-opacity:1;stroke:none" />
|
264
|
-
<text
|
265
|
-
id="text3556"
|
266
|
-
y="343.08441"
|
267
|
-
x="-39.465096"
|
268
|
-
style="font-size:8.65123844px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
269
|
-
xml:space="preserve"><tspan
|
270
|
-
y="343.08441"
|
271
|
-
x="-39.465096"
|
272
|
-
id="tspan3558"
|
273
|
-
sodipodi:role="line">Phusion Passenger code</tspan></text>
|
274
|
-
<rect
|
275
|
-
style="opacity:0.72000002;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3674)"
|
276
|
-
id="rect3829"
|
277
|
-
width="142.44562"
|
278
|
-
height="55.818989"
|
279
|
-
x="-101.60646"
|
280
|
-
y="289.76028"
|
281
|
-
rx="14.829157"
|
282
|
-
ry="9.5879955"
|
283
|
-
transform="matrix(1.0341163,0,0,1.5994034,218.82174,-180.69881)" />
|
284
|
-
<rect
|
285
|
-
style="fill:#ffe99b;fill-opacity:1;stroke:#ffb63e;stroke-width:2.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
286
|
-
id="rect3831"
|
287
|
-
width="142.44562"
|
288
|
-
height="93.818993"
|
289
|
-
x="112.91177"
|
290
|
-
y="271.62689"
|
291
|
-
rx="14.999999"
|
292
|
-
ry="15" />
|
293
|
-
<text
|
294
|
-
xml:space="preserve"
|
295
|
-
style="font-size:15.85331345px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
296
|
-
x="184.43161"
|
297
|
-
y="294.17538"
|
298
|
-
id="text3833"><tspan
|
299
|
-
sodipodi:role="line"
|
300
|
-
id="tspan3835"
|
301
|
-
x="184.43161"
|
302
|
-
y="294.17538">Web server</tspan><tspan
|
303
|
-
id="tspan3837"
|
304
|
-
sodipodi:role="line"
|
305
|
-
x="184.43161"
|
306
|
-
y="313.99203">worker process</tspan></text>
|
307
|
-
<rect
|
308
|
-
style="fill:#fffeda;fill-opacity:1;stroke:none"
|
309
|
-
id="rect3839"
|
310
|
-
width="121.5"
|
311
|
-
height="25"
|
312
|
-
x="123.27573"
|
313
|
-
y="328.45837"
|
314
|
-
rx="6.679687"
|
315
|
-
ry="6.3333335" />
|
316
|
-
<text
|
317
|
-
xml:space="preserve"
|
318
|
-
style="font-size:8.65123844px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
319
|
-
x="131.53491"
|
320
|
-
y="344.08441"
|
321
|
-
id="text3841"><tspan
|
322
|
-
sodipodi:role="line"
|
323
|
-
id="tspan3843"
|
324
|
-
x="131.53491"
|
325
|
-
y="344.08441">Phusion Passenger code</tspan></text>
|
326
|
-
<rect
|
327
|
-
transform="matrix(1.0341163,0,0,1.5994034,399.82174,-179.69881)"
|
328
|
-
ry="9.5879955"
|
329
|
-
rx="14.829157"
|
330
|
-
y="289.76028"
|
331
|
-
x="-101.60646"
|
332
|
-
height="55.818989"
|
333
|
-
width="142.44562"
|
334
|
-
id="rect3845"
|
335
|
-
style="opacity:0.72000002;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3674)" />
|
336
|
-
<rect
|
337
|
-
ry="15"
|
338
|
-
rx="14.999999"
|
339
|
-
y="272.62689"
|
340
|
-
x="293.91177"
|
341
|
-
height="93.818993"
|
342
|
-
width="142.44562"
|
343
|
-
id="rect3847"
|
344
|
-
style="fill:#ffe99b;fill-opacity:1;stroke:#ffb63e;stroke-width:2.99999976;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
345
|
-
<text
|
346
|
-
id="text3849"
|
347
|
-
y="295.17538"
|
348
|
-
x="365.43161"
|
349
|
-
style="font-size:15.85331345px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
350
|
-
xml:space="preserve"><tspan
|
351
|
-
y="295.17538"
|
352
|
-
x="365.43161"
|
353
|
-
id="tspan3851"
|
354
|
-
sodipodi:role="line">Web server</tspan><tspan
|
355
|
-
y="314.99203"
|
356
|
-
x="365.43161"
|
357
|
-
sodipodi:role="line"
|
358
|
-
id="tspan3853">worker process</tspan></text>
|
359
|
-
<rect
|
360
|
-
ry="6.3333335"
|
361
|
-
rx="6.679687"
|
362
|
-
y="329.45837"
|
363
|
-
x="304.27573"
|
364
|
-
height="25"
|
365
|
-
width="121.5"
|
366
|
-
id="rect3855"
|
367
|
-
style="fill:#fffeda;fill-opacity:1;stroke:none" />
|
368
|
-
<text
|
369
|
-
id="text3857"
|
370
|
-
y="345.08441"
|
371
|
-
x="312.53491"
|
372
|
-
style="font-size:8.65123844px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
373
|
-
xml:space="preserve"><tspan
|
374
|
-
y="345.08441"
|
375
|
-
x="312.53491"
|
376
|
-
id="tspan3859"
|
377
|
-
sodipodi:role="line">Phusion Passenger code</tspan></text>
|
378
|
-
</g>
|
379
|
-
<path
|
380
|
-
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
381
|
-
d="m 364.41177,190.86218 110,0 0,-54"
|
382
|
-
id="path3861"
|
383
|
-
inkscape:connector-curvature="0" />
|
384
|
-
</g>
|
385
|
-
</svg>
|