comparison xml/en/docs/howto_setup_development_environment_on_ec2.xml @ 950:facf495a5629

Changed nginx to NGINX SE - adding more links to .com and making it more relevant
author Andrew Alexeev <andrew@nginx.com>
date Wed, 31 Jul 2013 14:05:51 +0400
parents c1751a5e538a
children 3992b30c22f2
comparison
equal deleted inserted replaced
949:489b983ec7bc 950:facf495a5629
4 Copyright (C) Nginx, Inc. 4 Copyright (C) Nginx, Inc.
5 --> 5 -->
6 6
7 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd"> 7 <!DOCTYPE article SYSTEM "../../../dtd/article.dtd">
8 8
9 <article name="Setting up nginx environment on Amazon EC2" 9 <article name="Setting up NGINX SE environment on Amazon EC2"
10 link="/en/docs/howto_setup_development_environment_on_ec2.html" 10 link="/en/docs/howto_setup_development_environment_on_ec2.html"
11 lang="en" 11 lang="en"
12 rev="2"> 12 rev="2">
13 13
14 <section name="Products available on Amazon EC2"> 14 <section name="NGINX AMI on EC2">
15 15
16 <para> 16 <para>
17 As a Standard Technology Partner participating in AWS Partner Network, 17 As a Standard Technology Partner participating in AWS Partner Network,
18 Nginx is offering the following products: 18 Nginx offers the following products:
19 19
20 <list type="bullet" compact="no"> 20 <list type="bullet" compact="no">
21 21
22 <listitem> 22 <listitem>
23 <link url="https://aws.amazon.com/marketplace/pp/B00A04GAG4"> 23 <link url="https://aws.amazon.com/marketplace/pp/B00A04GAG4">
34 These images contain the following components: 34 These images contain the following components:
35 35
36 <list type="bullet" compact="no"> 36 <list type="bullet" compact="no">
37 37
38 <listitem> 38 <listitem>
39 Latest version of nginx optimized for use with AWS 39 Latest version of
40 </listitem> 40 <link url="http://nginx.com/products/">NGINX SE</link>
41 41 optimized for use with AWS.
42 <listitem> 42 </listitem>
43 Helper script used to install and configure a set of typical nginx 43
44 configurations 44 <listitem>
45 A set of pre-packaged software to build highly
46 available <link url="http://nginx.com/products/">NGINX SE</link>
47 configurations.
48 </listitem>
49
50 <listitem>
51 Helper script used to install and configure typical
52 development environments with
53 <link url="http://nginx.com/products/">NGINX SE</link>.
45 </listitem> 54 </listitem>
46 55
47 </list> 56 </list>
48 57
49 </para> 58 </para>
52 61
53 <section id="setting_up_nginx_environment_on_aws" 62 <section id="setting_up_nginx_environment_on_aws"
54 name="Step-by-step guide to start working with NGINX AMI"> 63 name="Step-by-step guide to start working with NGINX AMI">
55 64
56 <para> 65 <para>
57 To quickly set up nginx environment on AWS: 66 To quickly set up NGINX SE environment on AWS:
58 <list type="bullet" compact="no"> 67 <list type="bullet" compact="no">
59 <listitem> 68 <listitem>
60 Follow 69 Follow
61 <link url="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/Welcome.html"> 70 <link url="http://docs.amazonwebservices.com/AWSEC2/latest/GettingStartedGuide/Welcome.html">
62 Getting Started with EC2</link> guide to sign up to AWS and 71 Getting Started with EC2</link> guide to sign up to AWS and
70 to accept web traffic on TCP ports 80 and 443 (“1-click launch” 79 to accept web traffic on TCP ports 80 and 443 (“1-click launch”
71 will do that automatically). 80 will do that automatically).
72 </listitem> 81 </listitem>
73 82
74 <listitem> 83 <listitem>
75 As soon as the new instance is launched, nginx will be automatically 84 As soon as the new instance is launched, NGINX SE will be automatically
76 started and configured to serve default index.html page. 85 started and configured to serve default index.html page.
77 You can check it by pointing your web browser to the public DNS 86 You can check it by pointing your web browser to the public DNS
78 name of your newborn EC2 instance. 87 name of your newborn EC2 instance.
79 Also, you can log in to your instance and use 88 Also, you can log in to your instance and use
80 <programlisting> 89 <programlisting>
81 /etc/init.d/nginx status 90 /etc/init.d/nginx status
82 </programlisting> 91 </programlisting>
83 to check the status of your nginx server. 92 to check the status of your NGINX SE server.
84 </listitem> 93 </listitem>
85 94
86 <listitem> 95 <listitem>
87 To configure nginx for use with different web frameworks 96 To configure NGINX SE for use with different web frameworks
88 quickly and efficiently, you can use a special helper script 97 quickly and efficiently, you can use a special helper script
89 included in the AMI. 98 included in the AMI.
90 Log in to your EC2 instance and start: 99 Log in to your EC2 instance and start:
91 100
92 <programlisting> 101 <programlisting>
110 After the installation completes and the web application is installed 119 After the installation completes and the web application is installed
111 in a subdirectory inside <path>/var/www</path>, 120 in a subdirectory inside <path>/var/www</path>,
112 additional instructions will be provided on how to start/stop sample 121 additional instructions will be provided on how to start/stop sample
113 application. 122 application.
114 For example, the Rails/Unicorn application will reside in 123 For example, the Rails/Unicorn application will reside in
115 <path>/var/www/rails/sample-unicorn</path>, and specific part of nginx 124 <path>/var/www/rails/sample-unicorn</path>, and specific part of NGINX SE
116 configuration will be in <path>/etc/nginx/conf.d/rails-unicorn.conf</path>. 125 configuration will be in <path>/etc/nginx/conf.d/rails-unicorn.conf</path>.
117 Installed application and configuration files can be used as a basis 126 Installed application and configuration files can be used as a basis
118 for further development. 127 for further development.
119 </listitem> 128 </listitem>
120 </list> 129 </list>
178 187
179 <section id="if_something_goes_wrong" 188 <section id="if_something_goes_wrong"
180 name="What if something goes wrong?"> 189 name="What if something goes wrong?">
181 190
182 <para> 191 <para>
183 In case you encounter any problems with nginx configuration, 192 In case you encounter any problems with NGINX SE configuration,
184 the documentation is available on 193 the documentation is available on
185 <link url="http://nginx.org/en/docs/"/>. 194 <link url="http://nginx.org/en/docs/"/>.
186 </para> 195 </para>
187 196
188 <para> 197 <para>
189 Customers purchased NGINX AMI at AWS Marketplace are eligible for assistance 198 Customers purchased NGINX AMI at AWS Marketplace are eligible for assistance
190 under AWS support provided by Nginx core engineering team. 199 under AWS support provided by Nginx Inc. core engineering team.
191 In order to activate support, the following form must be filled out: 200 In order to activate support, the following form must be filled out:
192 <link url="http://nginx.com/sform.html"/>. 201 <link url="http://nginx.com/ami-support-activation/"/>.
193 Please note that you will need your AWS Account Number. 202 Please note that you will need your AWS Account Number.
194 In some cases we may also ask you to provide EC2 instance ID(s). 203 In some cases we may also ask you to provide EC2 instance ID(s).
195 </para> 204 </para>
196 205
197 </section> 206 </section>