We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c810b7 commit fdd8642Copy full SHA for fdd8642
hyperdiv_docs/pages/guide/deploying.py
@@ -28,7 +28,7 @@ def deploying():
28
Suppose you deploy a tool on PyPI whose code bundle
29
structure looks like:
30
31
- ```sh
+ ```
32
my_tool/
33
my_hyperdiv_app/
34
start.py
@@ -133,7 +133,7 @@ def launch_app():
133
Here's a basic Nginx config that sets up the Hyperdiv app
134
on `my-app.foo.com`:
135
136
+ ```nginx
137
server {
138
server_name my-app.foo.com;
139
listen 80;
@@ -183,7 +183,7 @@ def launch_app():
183
balancer, forwarding a new user connection to one of the
184
processes:
185
186
187
upstream my-hyperdiv-app {
188
server 127.0.0.1:9000 max_fails=0;
189
server 127.0.0.1:9001 max_fails=0;
0 commit comments