@@ -46,27 +46,27 @@ This will be enough to work on Platform, Academy and, OpenAPI. If you want to wo
46464. To serve them together, setup the nginx server with the following configuration:
4747
4848 ` ` ` nginx
49- server {
50- listen 80;
51- server_name docs.apify.loc;
52- location / {
53- proxy_pass http://localhost:3000;
54- }
55- location /api/client/js {
56- proxy_pass http://localhost:3001;
57- }
58- location /api/client/python {
59- proxy_pass http://localhost:3002;
60- }
61- location /sdk/js {
62- proxy_pass http://localhost:3003;
63- }
64- location /sdk/python {
65- proxy_pass http://localhost:3004;
66- }
67- location /cli {
68- proxy_pass http://localhost:3005;
69- }
49+ server {
50+ listen 80;
51+ server_name docs.apify.loc;
52+ location / {
53+ proxy_pass http://localhost:3000;
54+ }
55+ location /api/client/js {
56+ proxy_pass http://localhost:3001;
57+ }
58+ location /api/client/python {
59+ proxy_pass http://localhost:3002;
60+ }
61+ location /sdk/js {
62+ proxy_pass http://localhost:3003;
63+ }
64+ location /sdk/python {
65+ proxy_pass http://localhost:3004;
66+ }
67+ location /cli {
68+ proxy_pass http://localhost:3005;
69+ }
7070 }
7171 ` ` `
7272
@@ -180,11 +180,11 @@ Example schema
180180` ` ` yaml
181181type: object
182182properties:
183- id:
184- description: The resource ID
185- readOnly: true
186- allOf:
187- -$ref : ./ResourceId.yaml
183+ id:
184+ description: The resource ID
185+ readOnly: true
186+ allOf:
187+ -$ref : ./ResourceId.yaml
188188` ` `
189189
190190# ### Path documentation
0 commit comments