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
@@ -1,34 +0,0 @@
|
|
1
|
-
###### Autogenerated by Mizuho, DO NOT EDIT ######
|
2
|
-
# This file maps section names to IDs so that the commenting system knows which
|
3
|
-
# comments belong to which section. Section names may be changed at will but
|
4
|
-
# IDs always stay the same, allowing one to retain old comments even if you
|
5
|
-
# rename a section.
|
6
|
-
#
|
7
|
-
# This file is autogenerated but is not a cache; you MUST NOT DELETE this
|
8
|
-
# file and you must check it into your version control system. If you lose
|
9
|
-
# this file you may lose the ability to identity old comments.
|
10
|
-
#
|
11
|
-
# Entries marked with "fuzzy" indicate that the section title has changed
|
12
|
-
# and that Mizuho has found an ID which appears to be associated with that
|
13
|
-
# section. You should check whether it is correct, and if not, fix it.
|
14
|
-
|
15
|
-
1. Problem description => problem-description-lvxgz1
|
16
|
-
|
17
|
-
2. Analysis of possible solutions => analysis-of-possible-solutions-1ca8rx2
|
18
|
-
|
19
|
-
2.1. Apache must already be running as root => apache-must-already-be-running-as-root-17kidbt
|
20
|
-
|
21
|
-
2.2. Using Apache’s suEXEC => using-apache-s-suexec-1smlb2z
|
22
|
-
|
23
|
-
2.3. Using a setuid root wrapper application => using-a-setuid-root-wrapper-application-1g15zaq
|
24
|
-
|
25
|
-
2.4. Using a setuid $X wrapper application => using-a-setuid-x-wrapper-application-1mycuib
|
26
|
-
|
27
|
-
2.5. Using su => using-su-13r1zdf
|
28
|
-
|
29
|
-
2.6. Using sudo => using-sudo-ry6q7h
|
30
|
-
|
31
|
-
2.7. Common security issues => common-security-issues-25g9co
|
32
|
-
|
33
|
-
3. Chosen solution => chosen-solution-1wovtue
|
34
|
-
|
@@ -1,197 +0,0 @@
|
|
1
|
-
Security of user switching support in Passenger
|
2
|
-
===============================================
|
3
|
-
|
4
|
-
Problem description
|
5
|
-
-------------------
|
6
|
-
TIP: It is strongly recommended that you first read our
|
7
|
-
link:Architectural%20overview.html[Architectural Overview].
|
8
|
-
|
9
|
-
A straightforward implementation of Passenger will spawn Rails applications in
|
10
|
-
the same user context as Apache itself. On server machines which host multiple
|
11
|
-
websites for multiple users, this may not be desired. All Rails applications
|
12
|
-
spawned by Passenger will be able to read and write to all directories that the
|
13
|
-
web server can. So for example, Joe's Rails applications could read Jane's
|
14
|
-
Rails application's 'database.yml' or delete her application files. This is
|
15
|
-
also a problem that typically plagues PHP web hosts.
|
16
|
-
|
17
|
-
There are multiple ways to solve this problem. The goal of this document is to
|
18
|
-
inform the reader about the solutions have we have analyzed, so that
|
19
|
-
Passenger's security may be peer reviewed.
|
20
|
-
|
21
|
-
|
22
|
-
Analysis of possible solutions
|
23
|
-
------------------------------
|
24
|
-
It seems that the only way to solve this problem on Unix, is to run each Rails
|
25
|
-
application server as its owner's user and group. Passenger can make use of
|
26
|
-
one of the following methods to implement this:
|
27
|
-
|
28
|
-
1. Apache (and thus Passenger) must already be running as root.
|
29
|
-
2. Using Apache's suEXEC.
|
30
|
-
3. A setuid root wrapper application must exist, to allow non-root processes
|
31
|
-
to obtain root privileges (or at least, the privilege to switch user).
|
32
|
-
4. For each user $X that Passenger will need to switch to, there must exist
|
33
|
-
a setuid $X wrapper application.
|
34
|
-
5. Using 'su'.
|
35
|
-
6. Using 'sudo'.
|
36
|
-
|
37
|
-
Let us take a look at each method in detail.
|
38
|
-
|
39
|
-
[[apache_root]]
|
40
|
-
Apache must already be running as root
|
41
|
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
42
|
-
First, let us take a look at the typical Apache setup, in which Apache is bound
|
43
|
-
to port 80, and uses the prefork MPM. Binding to any port lower than 1024
|
44
|
-
requires root privileges, so Apache is typically run as root. This poses an
|
45
|
-
unacceptable security risk, so Apache's prefork MPM will, upon receiving an
|
46
|
-
HTTP request, spawn a child process with the privileges of a normal user,
|
47
|
-
typically 'www-data' or 'nobody'.
|
48
|
-
See http://httpd.apache.org/docs/2.2/mod/prefork.html[the documentation for the
|
49
|
-
prefork MPM] - in particular the ``User'' and ``Group'' directives - for details.
|
50
|
-
The process which is responsible for spawning child processes (also called the
|
51
|
-
control process) is run as root. This is also true for
|
52
|
-
http://httpd.apache.org/docs/2.2/mod/worker.html[the worker MPM].
|
53
|
-
|
54
|
-
Since Passenger has access to the control process, in the typical Apache setup,
|
55
|
-
Passenger can already launch Rails applications as a different user. But now we
|
56
|
-
have to ask this question:
|
57
|
-
|
58
|
-
=================================
|
59
|
-
If Apache is not running as root, are there still any Passenger users who
|
60
|
-
want to run Rails applications as different users?
|
61
|
-
=================================
|
62
|
-
|
63
|
-
If the answer is yes, then we cannot use this method.
|
64
|
-
|
65
|
-
The advantage of this method is that setting up Apache to run as root is
|
66
|
-
incredibly easy, and requires no new framework to be written. However, testing
|
67
|
-
this method in automated unit tests will require running the unit test suite as
|
68
|
-
root.
|
69
|
-
|
70
|
-
Using Apache's suEXEC
|
71
|
-
~~~~~~~~~~~~~~~~~~~~~
|
72
|
-
Apache's http://httpd.apache.org/docs/2.0/suexec.html[suEXEC] allows one to
|
73
|
-
run CGI processes as different users. But it seems that suEXEC can only be
|
74
|
-
used for CGI, and is not a general-purpose mechanism. The
|
75
|
-
http://alain.knaff.lu/howto/PhpSuexec/[PHP-suEXEC] software allows one to run
|
76
|
-
PHP applications via suEXEC, but it requires patching suEXEC. If Passenger is
|
77
|
-
to use suEXEC, then it is likely that we'll have to patch suEXEC. The suEXEC
|
78
|
-
website strongly discourages patching.
|
79
|
-
|
80
|
-
Using a setuid root wrapper application
|
81
|
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
82
|
-
If we use this method, we must be extremely careful. It must not be possible
|
83
|
-
for arbitrary processes to gain root privileges. We want Passenger, and only
|
84
|
-
Passenger, to be able to gain root privileges.
|
85
|
-
|
86
|
-
There are multiple ways to implement this security. The first one is to use
|
87
|
-
a password file, which only Apache and the wrapper can read, through
|
88
|
-
the use of proper file permissions. The password file must never be world
|
89
|
-
readable or writable.
|
90
|
-
|
91
|
-
It works as follows:
|
92
|
-
|
93
|
-
1. Passenger runs the wrapper.
|
94
|
-
2. Passenger passes the content of the password file to the wrapper, via
|
95
|
-
an anonymous pipe (or some other anonymous channel, that no other
|
96
|
-
processes can access).
|
97
|
-
3. The wrapper checks whether the passed content is the same as what is in
|
98
|
-
the password file. If it is, then it is proven that whatever application
|
99
|
-
ran the wrapper has read access to the password file, and thus is authorized
|
100
|
-
to use the wrapper.
|
101
|
-
|
102
|
-
An obvious problem that arises is: how does the wrapper locate its own password
|
103
|
-
file? We obviously do not want to be able to specify the password filename as
|
104
|
-
an argument to the wrapper: that would defeat the point of the password file.
|
105
|
-
The solution is that the filename is to be hardcoded into the binary during
|
106
|
-
compile time.
|
107
|
-
|
108
|
-
Another way to implement security is to use a whitelist of users that are
|
109
|
-
allowed to use the wrapper. The wrapper can then check whether the calling
|
110
|
-
process's user is in the whitelist.
|
111
|
-
|
112
|
-
Writing a wrapper is not too hard. Furthermore, unit tests do not have to be
|
113
|
-
run as root, in contrast to the run-Apache-as-root method.
|
114
|
-
|
115
|
-
[[setuid_root]]
|
116
|
-
Using a setuid $X wrapper application
|
117
|
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
118
|
-
A setuid $X wrapper will work in a fashion similar to the setuid root wrapper,
|
119
|
-
i.e. it will use a password file for authorization.
|
120
|
-
|
121
|
-
Passenger does not spawn Rails applications itself, but does so via the spawn
|
122
|
-
server. This spawn server is also responsible for preloading the Rails
|
123
|
-
framework and the Rails application code, in order to speed up the spawning
|
124
|
-
of Rails applications. See the design document of the spawn server for details.
|
125
|
-
The spawn server never calls `exec()`: doing so will make preloading useless.
|
126
|
-
If Passenger is to use a setuid $X wrapper, then it must start the spawn
|
127
|
-
server via the wrapper. The spawn server itself cannot use the wrapper.
|
128
|
-
|
129
|
-
However, doing so will make preloading less efficient. Passenger will be forced
|
130
|
-
to run a spawn server for each user. The different spawn servers do not share
|
131
|
-
memory with each other, so a lot of memory is wasted compared to the other
|
132
|
-
methods.
|
133
|
-
|
134
|
-
Implementing this will also take more work. One has to create a different
|
135
|
-
wrapper for each user, and to install it.
|
136
|
-
|
137
|
-
Using 'su'
|
138
|
-
~~~~~~~~~~
|
139
|
-
The standard Unix 'su' tool asks for the root password. It's a bad idea for
|
140
|
-
Apache to know the root password, so using 'su' is not a viable alternative.
|
141
|
-
|
142
|
-
Using 'sudo'
|
143
|
-
~~~~~~~~~~~~
|
144
|
-
It might be possible to use the 'sudo' utility. sudo can be configured in
|
145
|
-
such a way that the user Apache runs as can use sudo without having to enter a
|
146
|
-
password.
|
147
|
-
|
148
|
-
However, Passenger uses an anonymous communication channel (an unnamed Unix
|
149
|
-
socket) to communicate with the spawn server. sudo seems to close all file
|
150
|
-
descriptors before executing an application, so Passenger will have to
|
151
|
-
communicate with the spawn server via a non-anonymous channel, such as a named
|
152
|
-
Unix socket. Because other processes can access this channel, it can introduce
|
153
|
-
potential security problems. Note that passing information via program arguments
|
154
|
-
is not secure: it is possible to view that information with tools like 'ps',
|
155
|
-
or (on Linux) by reading the file `/proc/$PID/cmdline`.
|
156
|
-
|
157
|
-
So it seems 'sudo' is not a viable alternative.
|
158
|
-
|
159
|
-
Common security issues
|
160
|
-
~~~~~~~~~~~~~~~~~~~~~~
|
161
|
-
Whatever method Passenger will use, the following security principles must be
|
162
|
-
honored:
|
163
|
-
|
164
|
-
- Rails applications must never be run as root.
|
165
|
-
|
166
|
-
It might also be worthy to look into suEXEC's security model for inspiration.
|
167
|
-
|
168
|
-
Also, the following questions remain:
|
169
|
-
|
170
|
-
- Is there a need for a user whitelist/blacklist? That is, is there a need for
|
171
|
-
the ability to restrict the set of users that Passenger can switch to?
|
172
|
-
|
173
|
-
|
174
|
-
Chosen solution
|
175
|
-
---------------
|
176
|
-
Running Apache as root and writing a setuid root wrapper are the main
|
177
|
-
contestants. The former is preferred, because it's easier to implement.
|
178
|
-
|
179
|
-
We have had some conversations with people on the IRC channel #rubyonrails.
|
180
|
-
Among those people, nobody has ever run Apache as non-root. Because of this
|
181
|
-
we have chosen to implement the <<apache_root,Running Apache as root>>
|
182
|
-
solution, until a significant number of users request us to implement the
|
183
|
-
<<setuid_root,setuid root wrapper>> solution.
|
184
|
-
|
185
|
-
Please read link:rdoc/index.html[the Ruby API documentation] -- in particular
|
186
|
-
that of the 'ApplicationSpawner' class -- for implementation details. But to
|
187
|
-
make a long story short: it will switch to the owner of the file
|
188
|
-
'config/environment.rb'. User whitelisting/blacklisting is currently not
|
189
|
-
implemented. We rely on the system administrator to set the correct owner
|
190
|
-
on that file.
|
191
|
-
|
192
|
-
We have also not implemented suEXEC's security model. suEXEC's model is quite
|
193
|
-
paranoid, and although paranoia is good to a certain extent, it can be in the
|
194
|
-
way of usability while proving little extra security. We are not entirely
|
195
|
-
convinced that implementing suEXEC's full security model will provide
|
196
|
-
significant benefits, but if you have good reasons to think otherwise, please
|
197
|
-
feel free to discuss it with us.
|
@@ -1,172 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="en">
|
3
|
-
<head>
|
4
|
-
<meta charset="utf-8">
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6
|
-
<title>Server Optimization Guide</title>
|
7
|
-
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
8
|
-
<!--[if lt IE 9]>
|
9
|
-
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
|
10
|
-
<![endif]-->
|
11
|
-
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,400italic,600italic,700italic" rel="stylesheet" type="text/css">
|
12
|
-
<style type="text/css">
|
13
|
-
/*!
|
14
|
-
* Bootstrap v3.3.0 (http://getbootstrap.com)
|
15
|
-
* Copyright 2011-2014 Twitter, Inc.
|
16
|
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
17
|
-
*/
|
18
|
-
|
19
|
-
/*!
|
20
|
-
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=572bbf800700ea752a72)
|
21
|
-
* Config saved to config.json and https://gist.github.com/572bbf800700ea752a72
|
22
|
-
*//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px;line-height:1.42857143 \0}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm{line-height:30px;line-height:1.5 \0}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg{line-height:46px;line-height:1.33 \0}_:-ms-fullscreen,:root input[type="date"],_:-ms-fullscreen,:root input[type="time"],_:-ms-fullscreen,:root input[type="datetime-local"],_:-ms-fullscreen,:root input[type="month"]{line-height:1.42857143}_:-ms-fullscreen.input-sm,:root input[type="date"].input-sm,_:-ms-fullscreen.input-sm,:root input[type="time"].input-sm,_:-ms-fullscreen.input-sm,:root input[type="datetime-local"].input-sm,_:-ms-fullscreen.input-sm,:root input[type="month"].input-sm{line-height:1.5}_:-ms-fullscreen.input-lg,:root input[type="date"].input-lg,_:-ms-fullscreen.input-lg,:root input[type="time"].input-lg,_:-ms-fullscreen.input-lg,:root input[type="datetime-local"].input-lg,_:-ms-fullscreen.input-lg,:root input[type="month"].input-lg{line-height:1.33}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm,.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,select.form-group-sm .form-control{height:30px;line-height:30px}textarea.input-sm,textarea.form-group-sm .form-control,select[multiple].input-sm,select[multiple].form-group-sm .form-control{height:auto}.input-lg,.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,select.form-group-lg .form-control{height:46px;line-height:46px}textarea.input-lg,textarea.form-group-lg .form-control,select[multiple].input-lg,select[multiple].form-group-lg .form-control{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.form-horizontal .form-group:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}
|
23
|
-
|
24
|
-
body {
|
25
|
-
font-family: "Source Sans Pro", sans-serif;
|
26
|
-
color: #444;
|
27
|
-
}
|
28
|
-
|
29
|
-
h1, h2, h3, h4, h5, h6, strong {
|
30
|
-
font-weight: 600;
|
31
|
-
}
|
32
|
-
|
33
|
-
h1, h2, h3, h4, h5, h6 {
|
34
|
-
color: #333;
|
35
|
-
}
|
36
|
-
|
37
|
-
@media (min-width: 768px) {
|
38
|
-
body {
|
39
|
-
font-size: 18px;
|
40
|
-
}
|
41
|
-
|
42
|
-
pre {
|
43
|
-
font-size: 14px;
|
44
|
-
}
|
45
|
-
|
46
|
-
h1 { font-size: 40px; }
|
47
|
-
h2 { font-size: 34px; }
|
48
|
-
h3 { font-size: 28px; }
|
49
|
-
h4 { font-size: 22px; }
|
50
|
-
h5 { font-size: 20px; }
|
51
|
-
|
52
|
-
p {
|
53
|
-
line-height: 1.55;
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|
57
|
-
ul ul,
|
58
|
-
ul ol,
|
59
|
-
ol ol,
|
60
|
-
ol ul {
|
61
|
-
margin-bottom: 9px;
|
62
|
-
}
|
63
|
-
|
64
|
-
img {
|
65
|
-
max-width: 100%;
|
66
|
-
}
|
67
|
-
|
68
|
-
#container {
|
69
|
-
max-width: 800px;
|
70
|
-
margin-left: auto;
|
71
|
-
margin-right: auto;
|
72
|
-
}
|
73
|
-
|
74
|
-
@media(max-width: 830px) {
|
75
|
-
#container {
|
76
|
-
max-width: auto;
|
77
|
-
margin-left: 1em;
|
78
|
-
margin-right: 1em;
|
79
|
-
}
|
80
|
-
}
|
81
|
-
|
82
|
-
#top-vertical-container-margin {
|
83
|
-
margin-top: 20px;
|
84
|
-
}
|
85
|
-
|
86
|
-
#bottom-vertical-container-margin {
|
87
|
-
margin-bottom: 20px;
|
88
|
-
}
|
89
|
-
|
90
|
-
#logo {
|
91
|
-
text-align: center;
|
92
|
-
margin-bottom: 9px;
|
93
|
-
}
|
94
|
-
|
95
|
-
#title {
|
96
|
-
color: black;
|
97
|
-
text-align: center;
|
98
|
-
font-size: 300%;
|
99
|
-
line-height: 1em;
|
100
|
-
padding-bottom: 30px;
|
101
|
-
margin-bottom: 30px;
|
102
|
-
border-bottom: solid 1px #d0d0d0;
|
103
|
-
}
|
104
|
-
|
105
|
-
#toc {
|
106
|
-
margin-bottom: 20px;
|
107
|
-
}
|
108
|
-
|
109
|
-
#toc .level-2 {
|
110
|
-
margin-left: 18px;
|
111
|
-
}
|
112
|
-
|
113
|
-
#toc .level-3 {
|
114
|
-
margin-left: 36px;
|
115
|
-
}
|
116
|
-
|
117
|
-
footer {
|
118
|
-
border-top: solid 1px #d0d0d0;
|
119
|
-
margin-top: 9px;
|
120
|
-
padding-top: 9px;
|
121
|
-
}
|
122
|
-
</style>
|
123
|
-
</head>
|
124
|
-
<body>
|
125
|
-
|
126
|
-
<div id="container" class="container">
|
127
|
-
<div id="top-vertical-container-margin"></div>
|
128
|
-
<div id="logo">
|
129
|
-
<a href="http://www.phusion.nl/"><img src="images/phusion_banner_small.png" alt="Phusion docs" width="350" height="59"></a>
|
130
|
-
</div>
|
131
|
-
<div id="title">Server Optimization Guide</div>
|
132
|
-
|
133
|
-
<div id="toc" style="display: none">
|
134
|
-
<div class="header"><strong>Table of contents</strong></div>
|
135
|
-
</div>
|
136
|
-
|
137
|
-
<h1>Server optimization guide</h1>
|
138
|
-
|
139
|
-
<p>This documentation has moved. Please visit <a href="https://www.phusionpassenger.com/library/config/optimization/">https://www.phusionpassenger.com/library/config/optimization/</a></p>
|
140
|
-
|
141
|
-
|
142
|
-
<footer>
|
143
|
-
<p>© Phusion</p>
|
144
|
-
</footer>
|
145
|
-
|
146
|
-
<div id="bottom-vertical-container-margin"></div>
|
147
|
-
</div>
|
148
|
-
|
149
|
-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
150
|
-
<script>
|
151
|
-
(function() {
|
152
|
-
var toc = $('#toc');
|
153
|
-
var i = 1;
|
154
|
-
|
155
|
-
$('h1,h2,h3').each(function() {
|
156
|
-
var level = parseInt(this.nodeName.match(/\d+/)[0]);
|
157
|
-
var id = "header_" + i;
|
158
|
-
var item = $('<div><a></a></div>').appendTo(toc);
|
159
|
-
item.addClass("level-" + level);
|
160
|
-
item.find('a').
|
161
|
-
text($(this).text()).
|
162
|
-
prop('href', '#' + id);
|
163
|
-
$(this).prop('id', id);
|
164
|
-
i++;
|
165
|
-
});
|
166
|
-
|
167
|
-
toc.show();
|
168
|
-
})();
|
169
|
-
</script>
|
170
|
-
|
171
|
-
</body>
|
172
|
-
</html>
|
data/doc/images/by_sa.png
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,251 +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:xlink="http://www.w3.org/1999/xlink"
|
11
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
-
width="730"
|
14
|
-
height="275"
|
15
|
-
id="svg2"
|
16
|
-
sodipodi:version="0.32"
|
17
|
-
inkscape:version="0.48.2 r9819"
|
18
|
-
sodipodi:docname="direct_spawning.svg"
|
19
|
-
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
20
|
-
version="1.0"
|
21
|
-
inkscape:export-filename="/Users/hongli/Projects/passenger/doc/images/direct_spawning.png"
|
22
|
-
inkscape:export-xdpi="73.972603"
|
23
|
-
inkscape:export-ydpi="73.972603">
|
24
|
-
<defs
|
25
|
-
id="defs4">
|
26
|
-
<linearGradient
|
27
|
-
id="linearGradient3177">
|
28
|
-
<stop
|
29
|
-
style="stop-color:#d0e3ff;stop-opacity:1;"
|
30
|
-
offset="0"
|
31
|
-
id="stop3179" />
|
32
|
-
<stop
|
33
|
-
style="stop-color:#3586ff;stop-opacity:1;"
|
34
|
-
offset="1"
|
35
|
-
id="stop3181" />
|
36
|
-
</linearGradient>
|
37
|
-
<inkscape:perspective
|
38
|
-
sodipodi:type="inkscape:persp3d"
|
39
|
-
inkscape:vp_x="0 : 526.18109 : 1"
|
40
|
-
inkscape:vp_y="0 : 1000 : 0"
|
41
|
-
inkscape:vp_z="744.09448 : 526.18109 : 1"
|
42
|
-
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
|
43
|
-
id="perspective10" />
|
44
|
-
<linearGradient
|
45
|
-
inkscape:collect="always"
|
46
|
-
xlink:href="#linearGradient3177"
|
47
|
-
id="linearGradient3183"
|
48
|
-
x1="400"
|
49
|
-
y1="25.362183"
|
50
|
-
x2="399"
|
51
|
-
y2="147.36218"
|
52
|
-
gradientUnits="userSpaceOnUse"
|
53
|
-
gradientTransform="matrix(0.9573589,0,0,0.9344262,-66.16231,-7.3369061)" />
|
54
|
-
<linearGradient
|
55
|
-
inkscape:collect="always"
|
56
|
-
xlink:href="#linearGradient3177"
|
57
|
-
id="linearGradient3213"
|
58
|
-
gradientUnits="userSpaceOnUse"
|
59
|
-
gradientTransform="matrix(0.9573589,0,0,0.9344262,-67.16231,122.66309)"
|
60
|
-
x1="400"
|
61
|
-
y1="25.362183"
|
62
|
-
x2="399"
|
63
|
-
y2="147.36218" />
|
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="0.0"
|
74
|
-
inkscape:pageshadow="2"
|
75
|
-
inkscape:zoom="1"
|
76
|
-
inkscape:cx="379.63652"
|
77
|
-
inkscape:cy="106.20925"
|
78
|
-
inkscape:document-units="px"
|
79
|
-
inkscape:current-layer="layer1"
|
80
|
-
showgrid="false"
|
81
|
-
inkscape:window-width="1280"
|
82
|
-
inkscape:window-height="703"
|
83
|
-
inkscape:window-x="73"
|
84
|
-
inkscape:window-y="28"
|
85
|
-
inkscape:window-maximized="0" />
|
86
|
-
<metadata
|
87
|
-
id="metadata7">
|
88
|
-
<rdf:RDF>
|
89
|
-
<cc:Work
|
90
|
-
rdf:about="">
|
91
|
-
<dc:format>image/svg+xml</dc:format>
|
92
|
-
<dc:type
|
93
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
94
|
-
<dc:title></dc:title>
|
95
|
-
</cc:Work>
|
96
|
-
</rdf:RDF>
|
97
|
-
</metadata>
|
98
|
-
<g
|
99
|
-
inkscape:label="Layer 1"
|
100
|
-
inkscape:groupmode="layer"
|
101
|
-
id="layer1">
|
102
|
-
<rect
|
103
|
-
style="fill:url(#linearGradient3183);fill-opacity:1;stroke:none"
|
104
|
-
id="rect3175"
|
105
|
-
width="696"
|
106
|
-
height="114"
|
107
|
-
x="20"
|
108
|
-
y="16.362183"
|
109
|
-
rx="15"
|
110
|
-
ry="15" />
|
111
|
-
<rect
|
112
|
-
style="fill:#0000cc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.18635821px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
113
|
-
id="rect2383"
|
114
|
-
width="200.81364"
|
115
|
-
height="51.813644"
|
116
|
-
x="38.093178"
|
117
|
-
y="60.45536" />
|
118
|
-
<text
|
119
|
-
xml:space="preserve"
|
120
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
121
|
-
x="51.200211"
|
122
|
-
y="94.621658"
|
123
|
-
id="text2385"><tspan
|
124
|
-
sodipodi:role="line"
|
125
|
-
id="tspan2387"
|
126
|
-
x="51.200211"
|
127
|
-
y="94.621658"
|
128
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Application code</tspan></text>
|
129
|
-
<rect
|
130
|
-
style="fill:#7c00c5;fill-opacity:1;stroke:none"
|
131
|
-
id="rect3159"
|
132
|
-
width="257"
|
133
|
-
height="52"
|
134
|
-
x="239"
|
135
|
-
y="60.362183" />
|
136
|
-
<text
|
137
|
-
xml:space="preserve"
|
138
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
139
|
-
x="255.31216"
|
140
|
-
y="95.480743"
|
141
|
-
id="text3165"><tspan
|
142
|
-
sodipodi:role="line"
|
143
|
-
id="tspan3167"
|
144
|
-
x="255.31216"
|
145
|
-
y="95.480743"
|
146
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Rails framework code</tspan></text>
|
147
|
-
<rect
|
148
|
-
style="fill:#0ea500;fill-opacity:1;stroke:none"
|
149
|
-
id="rect3173"
|
150
|
-
width="201"
|
151
|
-
height="52"
|
152
|
-
x="496"
|
153
|
-
y="60.362183" />
|
154
|
-
<text
|
155
|
-
xml:space="preserve"
|
156
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
157
|
-
x="519.03094"
|
158
|
-
y="94.314087"
|
159
|
-
id="text3169"><tspan
|
160
|
-
sodipodi:role="line"
|
161
|
-
id="tspan3171"
|
162
|
-
x="519.03094"
|
163
|
-
y="94.314087"
|
164
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Other memory</tspan></text>
|
165
|
-
<text
|
166
|
-
xml:space="preserve"
|
167
|
-
style="font-size:66.72337341px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
168
|
-
x="285.86664"
|
169
|
-
y="45.084782"
|
170
|
-
id="text3185"><tspan
|
171
|
-
sodipodi:role="line"
|
172
|
-
id="tspan3187"
|
173
|
-
x="285.86664"
|
174
|
-
y="45.084782"
|
175
|
-
style="font-size:23.35318184px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial">App process 1</tspan></text>
|
176
|
-
<rect
|
177
|
-
style="fill:url(#linearGradient3213);fill-opacity:1;stroke:none"
|
178
|
-
id="rect3189"
|
179
|
-
width="696"
|
180
|
-
height="114"
|
181
|
-
x="19"
|
182
|
-
y="146.36218"
|
183
|
-
rx="15"
|
184
|
-
ry="15" />
|
185
|
-
<rect
|
186
|
-
style="fill:#0000cc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.18635821px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
187
|
-
id="rect3191"
|
188
|
-
width="200.81364"
|
189
|
-
height="51.813644"
|
190
|
-
x="37.09317"
|
191
|
-
y="190.45535" />
|
192
|
-
<text
|
193
|
-
xml:space="preserve"
|
194
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
195
|
-
x="50.200211"
|
196
|
-
y="224.62166"
|
197
|
-
id="text3193"><tspan
|
198
|
-
sodipodi:role="line"
|
199
|
-
id="tspan3195"
|
200
|
-
x="50.200211"
|
201
|
-
y="224.62166"
|
202
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Application code</tspan></text>
|
203
|
-
<rect
|
204
|
-
style="fill:#7c00c5;fill-opacity:1;stroke:none"
|
205
|
-
id="rect3197"
|
206
|
-
width="257"
|
207
|
-
height="52"
|
208
|
-
x="238"
|
209
|
-
y="190.36218" />
|
210
|
-
<text
|
211
|
-
xml:space="preserve"
|
212
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
213
|
-
x="254.31216"
|
214
|
-
y="225.48074"
|
215
|
-
id="text3199"><tspan
|
216
|
-
sodipodi:role="line"
|
217
|
-
id="tspan3201"
|
218
|
-
x="254.31216"
|
219
|
-
y="225.48074"
|
220
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Rails framework code</tspan></text>
|
221
|
-
<rect
|
222
|
-
style="fill:#0ea500;fill-opacity:1;stroke:none"
|
223
|
-
id="rect3203"
|
224
|
-
width="201"
|
225
|
-
height="52"
|
226
|
-
x="495"
|
227
|
-
y="190.36218" />
|
228
|
-
<text
|
229
|
-
xml:space="preserve"
|
230
|
-
style="font-size:23.59850502px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial"
|
231
|
-
x="518.03094"
|
232
|
-
y="224.31409"
|
233
|
-
id="text3205"><tspan
|
234
|
-
sodipodi:role="line"
|
235
|
-
id="tspan3207"
|
236
|
-
x="518.03094"
|
237
|
-
y="224.31409"
|
238
|
-
style="font-weight:normal;-inkscape-font-specification:Arial">Other memory</tspan></text>
|
239
|
-
<text
|
240
|
-
xml:space="preserve"
|
241
|
-
style="font-size:66.72337341px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
|
242
|
-
x="285.86664"
|
243
|
-
y="175.08478"
|
244
|
-
id="text3209"><tspan
|
245
|
-
sodipodi:role="line"
|
246
|
-
id="tspan3211"
|
247
|
-
x="285.86664"
|
248
|
-
y="175.08478"
|
249
|
-
style="font-size:23.35318184px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Arial;-inkscape-font-specification:Arial">App process 2</tspan></text>
|
250
|
-
</g>
|
251
|
-
</svg>
|