Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 1, 2023
1 parent 680ea2a commit 3d43123
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/source/deploy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ High level instructions, specific to Voilà can be found below:
1. Follow the steps of the official documentation to install the Railway
CLI and login on your machine.

2. Add a file named runtime.txt to the project directory with a
2. Add a file named runtime.txt to the project directory with a
`valid Python runtime <https://devcenter.heroku.com/articles/python-support#supported-runtimes>`__:

.. code:: text
Expand Down Expand Up @@ -253,13 +253,13 @@ Steps
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
client_max_body_size 100M;
error_log /var/log/nginx/error.log;
}
Expand Down Expand Up @@ -289,7 +289,7 @@ Steps
[Unit]
Description=Voila
[Service]
Type=simple
PIDFile=/run/voila.pid
Expand All @@ -298,7 +298,7 @@ Steps
WorkingDirectory=/home/ubuntu/
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
Expand Down Expand Up @@ -337,15 +337,15 @@ Enable HTTPS with Let's Encrypt
2. Obtain the certificates from Let's Encrypt. The ``--nginx`` flag will edit the nginx configuration automatically:

.. code:: text
sudo certbot --nginx -d yourdomain.com
3. ``/etc/nginx/sites-enabled/yourdomain.com`` should now contain a few more entries:

.. code :: text
$ cat /etc/nginx/sites-enabled/yourdomain.com
...
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/yourdomain.com/fullchain.pem; # managed by Certbot
Expand Down

0 comments on commit 3d43123

Please sign in to comment.