Skip to content

Commit

Permalink
Merge pull request #22 from davidmikulis/fix-uWSGI-deployguide-typos
Browse files Browse the repository at this point in the history
Fix typos in terminal commands in deployment guide.
  • Loading branch information
jslvtr authored Aug 30, 2018
2 parents 2fc44e4 + ef52e5f commit 8e73277
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 8e73277

Please sign in to comment.