Skip to content

Commit fdd8642

Browse files
committed
Use the nginx code highlighter.
1 parent 4c810b7 commit fdd8642

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hyperdiv_docs/pages/guide/deploying.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def deploying():
2828
Suppose you deploy a tool on PyPI whose code bundle
2929
structure looks like:
3030
31-
```sh
31+
```
3232
my_tool/
3333
my_hyperdiv_app/
3434
start.py
@@ -133,7 +133,7 @@ def launch_app():
133133
Here's a basic Nginx config that sets up the Hyperdiv app
134134
on `my-app.foo.com`:
135135
136-
```sh
136+
```nginx
137137
server {
138138
server_name my-app.foo.com;
139139
listen 80;
@@ -183,7 +183,7 @@ def launch_app():
183183
balancer, forwarding a new user connection to one of the
184184
processes:
185185
186-
```sh
186+
```nginx
187187
upstream my-hyperdiv-app {
188188
server 127.0.0.1:9000 max_fails=0;
189189
server 127.0.0.1:9001 max_fails=0;

0 commit comments

Comments
 (0)