Skip to content

Commit c4bc1a4

Browse files
committed
readme
1 parent 6db9276 commit c4bc1a4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ The EB CLI integrates with Git and simplifies the process of creating environmen
1414
If you have pip, use it to install the EB CLI.
1515

1616
```Shell
17-
$ pip install --user --upgrade awsebcli
17+
$ pip install awsebcli
1818
```
1919

20-
Add the local install location to your OS's path variable.
20+
Add the local install location to your OS's path variable. The installation path depends on where you installed Python. Note that it is recommended to install Python in your user directory, and avoid using the version of Python that came with your operating system.
2121

2222
###### Linux
2323
```Shell
2424
$ export PATH=~/.local/bin:$PATH
2525
```
2626
###### OS-X
2727
```Shell
28-
$ export PATH=~/Library/Python/3.4/bin:$PATH
28+
$ export PATH=~/Library/Python/3.6/bin:$PATH
2929
```
3030
###### Windows
3131
Add `%USERPROFILE%\AppData\Roaming\Python\Scripts` to your PATH variable. Search for **Edit environment variables for your account** in the Start menu.
@@ -102,14 +102,14 @@ If you don't have pip, follow the instructions [here](http://docs.aws.amazon.com
102102
## Networking configuration
103103
Modify the configuration files in the .ebextensions folder with the IDs of your [default VPC and subnets](https://console.aws.amazon.com/vpc/home#subnets:filter=default), and [your public IP address](https://www.google.com/search?q=what+is+my+ip).
104104

105+
- `.ebextensions/dev.config` restricts access to your environment to your IP address to protect it during the WordPress installation process. Replace the placeholder IP address near the top of the file with your public IP address.
105106
- `.ebextensions/efs-create.config` creates an EFS file system and mount points in each Availability Zone / subnet in your VPC. Identify your default VPC and subnet IDs in the [VPC console](https://console.aws.amazon.com/vpc/home#subnets:filter=default). If you have not used the console before, use the region selector to select the same region that you chose for your environment.
106107

107-
### WARNING: EFS lifecycle
108-
Any resources that you create with configuration files are tied to the lifecycle of your environment. They are lost if you terminate your environment or remove the configuration file.
109-
Use this configuration file to create an Amazon EFS file system in a development environment. When you no longer need the environment and terminate it, the file system is cleaned up for you.
110-
For production environments, consider creating the file system using Amazon EFS directly.
111-
For details, see [Creating an Amazon Elastic File System](http://docs.aws.amazon.com/efs/latest/ug/creating-using-create-fs.html).
112-
- `.ebextensions/dev.config` restricts access to your environment to your IP address to protect it during the WordPress installation process. Replace the placeholder IP address near the top of the file with your public IP address.
108+
### WARNING: EFS lifecycle
109+
Any resources that you create with configuration files are tied to the lifecycle of your environment. They are lost if you terminate your environment or remove the configuration file.
110+
Use this configuration file to create an Amazon EFS file system in a development environment. When you no longer need the environment and terminate it, the file system is cleaned up for you.
111+
For production environments, consider creating the file system using Amazon EFS directly.
112+
For details, see [Creating an Amazon Elastic File System](http://docs.aws.amazon.com/efs/latest/ug/creating-using-create-fs.html).
113113

114114
## Deploy WordPress to your environment
115115
Deploy the project code to your Elastic Beanstalk environment.

0 commit comments

Comments
 (0)