Skip to content

Commit

Permalink
Fix typos in terminal commands in deployment guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
davimiku committed Aug 30, 2018
1 parent 2fc44e4 commit ef52e5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/How To Deploy Python App Using uWSGI And Nginx.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ pip install virtualenv
After it is installed, we can create a `virtualenv`:

```
virtualenv venv --python==python3.5
virtualenv venv --python=python3.5
```

Note that `Ubuntu` usually comes with `Python3.5` and it is what we used in the sample code, if you choose to use different versions of `Python`, feel free to change it accordingly and it will be the Python version inside your `virtualenv`.
Expand Down Expand Up @@ -509,7 +509,7 @@ The above config allows `nginx` to send the request coming from our user's brows
And at last, in order to enable our configuration, we need to do something like this:

```
sudo rm /etc/nginx/site-enabled/default
sudo rm /etc/nginx/sites-enabled/default
sudo ln -s /etc/nginx/sites-available/items-rest.conf /etc/nginx/sites-enabled/
```

Expand Down

0 comments on commit ef52e5f

Please sign in to comment.