Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ server {
location /sdk/python {
proxy_pass https://apify.github.io/apify-sdk-python/;
}
location = /cli.md {
proxy_pass $backend$uri;
}
Comment on lines +60 to +62
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why dont you fix this in the CLI directly? i would rather not mess with nginx because of such a problem, especially because of the accept header support that will need to work for those repositories too

location /cli {
proxy_pass https://apify.github.io/apify-cli/;
}
Expand Down