Sphinx Documentation: Hosting Multiple Versions for Your Project
Learn how to host multiple versions of Sphinx documentation for your project using `sphinx-polyversion`. This guide covers the limitations of ReadTheDocs, the benefits of `sphinx-polyversion`, and detailed steps for integrating it into your project. Discover how to configure version tags, set up a reverse proxy with nginx, and maintain seamless documentation across different environments. Perfect for teams needing efficient and scalable versioned documentation management.
If you are maintaining a project, the best practice is to stick to a single version. It simplifies coding, testing, and hosting documentation. However, in reality, you may need to maintain multiple versions of your project, including the documentation. This post will guide you through how to host multiple versions of Sphinx documentation for your project using sphinx-polyversion
.
Why Not ReadTheDocs?
ReadTheDocs is a popular platform for hosting documentation. It supports multiple versions of documentation, and it’s free for open-source projects. While it might work for some, my team encountered limitations that led us to move all our documentation to self-hosting a few years ago:
- Build Time Experience: The build time can be slow, especially for large projects with complex dependencies, and not easy to troubleshoot when things go wrong.
- Limited Customization: It inserts its own ads in our documentation, unless we pay for a premium plan.
- Custom Domain: We wanted to host our documentation on our own domain, which is possible but lack of flexibility with ReadTheDocs.
These limitations led us to explore self-hosting options for greater control, and we’ve found Cloudflare Pages to be a great fit, but any other static site hosting service (Azure Static Web Apps) could work just as well.
What Is the Best Option?
In the past, we evaluated several existing solutions but didn’t find any that fit our needs perfectly. Without naming them, I’ll say that they either lacked automation or were too complex for the task at hand. Recently, however, we came across a project called sphinx-polyversion. Unlike previous solutions, this one won our hearts due to its simplicity and ease of use.
At its core, sphinx-polyversion
automates the process of checking out different versions of your project from source control (Git), setting up environments, building versioned documentation, and aggregating them in a single place. The simplicity of this approach is its strength.
You can see it in action by reviewing the project’s own documentation, which serves as an example of how the tool works.
How To Use It?
If you’re just starting with a Sphinx project, I suggest forking the sphinx-polyversion
repo and use it as your starting point. Learning by doing is the best way to understand how it operates.
However, my focus in this post is on how my team integrated sphinx-polyversion
into PySNMP, which has been around for a while and now supports four versions concurrently: 6.1, 6.2, 7.0, and 7.1.
The Configuration
Before diving into the integration, our team outlined several goals:
- Only specific version tags should be hosted—no branches.
- We only wanted to host major.minor version tags (e.g., 6.1), excluding tags for minor patch versions like 6.1.1.
- The documentation should work seamlessly in both Preview and Production environments hosted on Cloudflare Pages.
With these objectives in mind, we started configuring sphinx-polyversion
. The configuration file is relatively simple, and you can see it in this commit and this one:
TAG_REGEX
captures selected version tags. In our case, we had to create and maintain major.minor tags since they weren’t used before.BRANCH_REGEX
ensures branches are excluded by either leaving it empty or using a pattern that never matches.- (Optional)
docs/templates/index.html
is essential for redirecting users at homepage to versioned URLs. - The original
docs/source
must be upgraded to include version selector elements in the sidebar, requiring several modifications toconf.py
. - Finally, latter commit was cherry-picked across all selected release branches. This step ensures that previous versions include the necessary versioning elements.
You can track future configuration changes for polyversion in the PySNMP repo.
Reverse Proxy Configuration
It’s crucial to configure the reverse proxy correctly to ensure old URLs redirect to the new versioned URLs. Since we use nginx, here’s a simple configuration example:
1
2
3
4
5
6
7
8
9
10
11
12
location /pysnmp/ {
# If the URL does NOT contain a version pattern (non-versioned URL)
if ($uri !~* "^/pysnmp/v\d+\.\d+/") {
# Redirect non-versioned URLs to /v7.1/
rewrite ^/pysnmp/(.*)$ https://docs.lextudio.com/pysnmp/v7.1/$1 permanent;
}
# For versioned URLs, proxy the request
proxy_ssl_server_name on;
proxy_pass https://pysnmp.pages.dev/;
proxy_set_header Host "pysnmp.pages.dev";
}
This configuration ensures that users visiting non-versioned URLs are automatically redirected to the latest stable version (v7.1 in this case), while versioned URLs are correctly proxied.
Manual Work Required
While sphinx-polyversion
automates most of the process, there are still some manual steps required:
- Tags: Version tags need to be maintained manually. Since sometimes we patched documentation, we had to delete the old tag and recreate it with another commit.
- New Releases: When a new release is made, the version tag must be created or moved, and the reverse proxy configuration might need to be updated.
Conclusion
By leveraging sphinx-polyversion
, we simplified the management of multiple versions of our Sphinx documentation. This tool provides an efficient and scalable way to host versioned docs without adding unnecessary complexity. Whether you’re supporting one version or many, sphinx-polyversion
helps you keep everything organized in a maintainable way.
If you’re interested in hosting multiple versions of Sphinx documentation, I recommend giving sphinx-polyversion
a try. It’s a powerful yet simple tool that could be the solution you’re looking for.
We don’t intend to cover all possible features of
sphinx-polyversion
in this post. If you have specific questions or need help with your Sphinx documentation, feel free to reach out to its creator.