Skip to content

Commit

Permalink
fix indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TC-MO committed Dec 11, 2024
1 parent 26237f7 commit 8b4a721
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,26 +47,26 @@ This will be enough to work on Platform, Academy and, OpenAPI. If you want to wo

```nginx
server {
listen 80;
server_name docs.apify.loc;
location / {
proxy_pass http://localhost:3000;
}
location /api/client/js {
proxy_pass http://localhost:3001;
}
location /api/client/python {
proxy_pass http://localhost:3002;
}
location /sdk/js {
proxy_pass http://localhost:3003;
}
location /sdk/python {
proxy_pass http://localhost:3004;
}
location /cli {
proxy_pass http://localhost:3005;
}
listen 80;
server_name docs.apify.loc;
location / {
proxy_pass http://localhost:3000;
}
location /api/client/js {
proxy_pass http://localhost:3001;
}
location /api/client/python {
proxy_pass http://localhost:3002;
}
location /sdk/js {
proxy_pass http://localhost:3003;
}
location /sdk/python {
proxy_pass http://localhost:3004;
}
location /cli {
proxy_pass http://localhost:3005;
}
}
```

Expand All @@ -91,11 +91,11 @@ You should be able to open https://docs.apify.loc in your browser and run all th

1. Text emphasis:

- use *Bold* for UI elements
- use **Italics** for emphasis
- use `code` for inline code, by using back-ticks (\`\`\)
- use code blocks with language specification
- usd [code tabs](https://docusaurus.io/docs/markdown-features/tabs) whenever you want to include examples of implementation in more than one language
- use *Bold* for UI elements
- use **Italics** for emphasis
- use `code` for inline code, by using back-ticks (\`\`\)
- use code blocks with language specification
- usd [code tabs](https://docusaurus.io/docs/markdown-features/tabs) whenever you want to include examples of implementation in more than one language

2. Documentation elements:

Expand Down

0 comments on commit 8b4a721

Please sign in to comment.