changeset 1378:6bfd39dc48c5

NGINX Plus EC2 documentation was moved to nginx.com. Removed the page sources and fixed links to point to current location where applicable.
author Konstantin Pavlov <thresh@nginx.com>
date Thu, 18 Dec 2014 14:32:53 +0300
parents 6135c6034530
children 91f5c089f4ca
files xml/en/GNUmakefile xml/en/docs/howto_setup_development_environment_on_ec2.xml xml/en/docs/index.xml xml/it/docs/index.xml xml/ru/docs/index.xml
diffstat 5 files changed, 4 insertions(+), 218 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/GNUmakefile
+++ b/xml/en/GNUmakefile
@@ -19,7 +19,6 @@ DOCS =									\
 		http/websocket						\
 		howto_build_on_win32					\
 		freebsd_tuning						\
-		howto_setup_development_environment_on_ec2		\
 		nginx_dtrace_pid_provider				\
 		contributing_changes					\
 		beginners_guide						\
deleted file mode 100644
--- a/xml/en/docs/howto_setup_development_environment_on_ec2.xml
+++ /dev/null
@@ -1,208 +0,0 @@
-<?xml version="1.0"?>
-
-<!--
-  Copyright (C) Nginx, Inc.
-  -->
-
-<!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
-
-<article name="Setting up NGINX Plus environment on Amazon EC2"
-         link="/en/docs/howto_setup_development_environment_on_ec2.html"
-         lang="en"
-         rev="2">
-
-<section name="NGINX AMI on EC2">
-
-<para>
-As a Standard Technology Partner participating in AWS Partner Network,
-Nginx offers the following products:
-
-<list type="bullet" compact="no">
-
-<listitem>
-<link url="https://aws.amazon.com/marketplace/pp/B00A04GAG4/ref=_ptnr_doc_">
-NGINX Amazon Linux AMI</link>
-</listitem>
-
-<listitem>
-<link url="https://aws.amazon.com/marketplace/pp/B00DIF4A6Y/ref=_ptnr_doc_">
-NGINX Ubuntu AMI</link>
-</listitem>
-
-</list>
-
-These images contain the following components:
-
-<list type="bullet" compact="no">
-
-<listitem>
-Latest version of
-<link url="http://nginx.com/products/">NGINX Plus</link>
-optimized for use with AWS.
-</listitem>
-
-<listitem>
-A set of pre-packaged software to build highly
-available <link url="http://nginx.com/products/">NGINX Plus</link>
-configurations.
-</listitem>
-
-<listitem>
-Helper script used to install and configure typical
-development environments with
-<link url="http://nginx.com/products/">NGINX Plus</link>.
-</listitem>
-
-</list>
-
-</para>
-
-</section>
-
-<section id="setting_up_nginx_environment_on_aws"
-         name="Step-by-step guide to start working with NGINX Plus AMI">
-
-<para>
-To quickly set up NGINX Plus environment on AWS:
-<list type="bullet" compact="no">
-<listitem>
-Follow
-<link url="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/Welcome.html">
-Getting Started with EC2</link> guide to sign up to AWS and
-get more information about EC2 itself.
-Then you can proceed to
-<link url="https://aws.amazon.com/marketplace/pp/B00A04GAG4/ref=_ptnr_doc_">
-NGINX Plus Amazon Linux AMI</link> or
-<link url="https://aws.amazon.com/marketplace/pp/B00DIF4A6Y/ref=_ptnr_doc_">
-NGINX Plus Ubuntu AMI</link> product page on AWS Marketplace and launch the AMI.
-When configuring the firewall rules, it is necessary to add a rule
-to accept web traffic on TCP ports 80 and 443 (“1-click launch”
-will do that automatically).
-</listitem>
-
-<listitem>
-As soon as the new instance is launched, NGINX Plus will be automatically
-started and configured to serve default index.html page.
-You can check it by pointing your web browser to the public DNS
-name of your newborn EC2 instance.
-Also, you can log in to your instance and use
-<programlisting>
-/etc/init.d/nginx status
-</programlisting>
-to check the status of your NGINX Plus server.
-</listitem>
-
-<listitem>
-To configure NGINX Plus for use with different web frameworks
-quickly and efficiently, you can use a special helper script
-included in the AMI.
-Log in to your EC2 instance and start:
-
-<programlisting>
-nginx-setup
-</programlisting>
-</listitem>
-
-<listitem>
-You will be asked to select what components to install.
-Please check the next section in this document for
-list of available software components.
-After you have selected the necessary component, the script
-will automatically install all prerequisite packages
-and prepare the necessary configuration.
-There will be a separate user created too,
-and then a sample web application is started to ensure everything
-is working correctly.
-</listitem>
-
-<listitem>
-After the installation completes and the web application is installed
-in a subdirectory inside <path>/var/www</path>,
-additional instructions will be provided on how to start/stop sample
-application.
-For example, the Rails/Unicorn application will reside in
-<path>/var/www/rails/sample-unicorn</path>, and specific part of nginx
-configuration will be in <path>/etc/nginx/conf.d/rails-unicorn.conf</path>.
-Installed application and configuration files can be used as a basis
-for further development.
-</listitem>
-</list>
-</para>
-
-</section>
-
-<section id="available_software"
-         name="Software available for automatic configuration with NGINX Plus AMI">
-
-<para>
-The following software is available for automatic installation
-and configuration using <literal>nginx-setup</literal> helper script:
-
-<list type="bullet" compact="no">
-
-<listitem>
-Generic
-<link url="http://php.net/manual/en/install.fpm.php">PHP-FPM</link>
-configuration.
-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation
-with some additional features useful for heavy-loaded sites, such as
-dynamic/static child spawning, advanced process management,
-ability to start workers with different uid/gid/chroot environment.
-</listitem>
-
-<listitem>
-<link url="http://rubyonrails.org/">Ruby on Rails</link>,
-an open-source Ruby web framework that's optimized for programmer happiness
-and sustainable productivity.
-You can choose the application server to work with, currently
-Unicorn and Thin are available to configure.
-Also, during the installation process you can either enter the version of
-Rails manually, or use the default one.
-</listitem>
-
-<listitem>
-<link url="https://www.djangoproject.com/">Django</link>,
-a high-level Python web framework that encourages rapid development
-and clean, pragmatic design.
-It lets you build high-performing, elegant Web applications quickly.
-Django focuses on automating as much as possible and adhering to the DRY
-(Don't Repeat Yourself) principle.
-</listitem>
-
-<listitem>
-<link url="http://www.pylonsproject.org/">Pyramid</link>,
-a small, fast, down-to-earth, open source Python web development framework.
-It makes real-world web application development and deployment more fun,
-more predictable, and more productive.
-Pyramid is a Pylons Project, and is the successor to the Pylons web framework.
-There is an ability to enter desired version of Pyramid during the
-installation process.
-</listitem>
-
-</list>
-
-</para>
-
-</section>
-
-<section id="if_something_goes_wrong"
-         name="What if something goes wrong?">
-
-<para>
-In case you encounter any problems with nginx configuration,
-the documentation is available on
-<link url="http://nginx.org/en/docs/"/>.
-</para>
-
-<para>
-Customers who purchased NGINX Plus AMI at AWS Marketplace are eligible for
-assistance under AWS support provided by Nginx Inc. engineering team.
-In order to activate support, the following form must be filled out:
-<link url="http://nginx.com/ami-support-activation/"/>.
-Please note that you will need your AWS Account Number.
-In some cases we may also ask you to provide EC2 instance ID(s).
-</para>
-
-</section>
-
-</article>
--- a/xml/en/docs/index.xml
+++ b/xml/en/docs/index.xml
@@ -8,7 +8,7 @@
 <article name="nginx documentation"
          link="/en/docs/"
          lang="en"
-         rev="16"
+         rev="17"
          toc="no">
 
 
@@ -110,7 +110,7 @@
 </listitem>
 
 <listitem>
-<link doc="howto_setup_development_environment_on_ec2.xml"/>
+<link url="http://nginx.com/resources/admin-guide/setting-nginx-plus-environment-amazon-ec2/">Setting up NGINX Plus environment on Amazon EC2</link>
 </listitem>
 
 <listitem>
--- a/xml/it/docs/index.xml
+++ b/xml/it/docs/index.xml
@@ -87,10 +87,6 @@
 
 <!--
 <listitem>
-<link doc="howto_setup_development_environment_on_ec2.xml"/>
-</listitem>
-
-<listitem>
 <link doc="nginx_dtrace_pid_provider.xml"/>
 </listitem>
 -->
--- a/xml/ru/docs/index.xml
+++ b/xml/ru/docs/index.xml
@@ -8,7 +8,7 @@
 <article name="nginx: документация"
          link="/ru/docs/"
          lang="ru"
-         rev="16"
+         rev="17"
          toc="no">
 
 
@@ -112,8 +112,7 @@
 </listitem>
 
 <listitem>
-<link doc="../../en/docs/howto_setup_development_environment_on_ec2.xml">Настройка
-окружения NGINX Plus на Amazon EC2</link> [en]
+<link url="http://nginx.com/resources/admin-guide/setting-nginx-plus-environment-amazon-ec2/">Настройка окружения NGINX Plus на Amazon EC2</link> [en]
 </listitem>
 
 <listitem>