Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
/ pulp Public archive

Documenting how to serve http and https content #3719

Merged
merged 1 commit into from Oct 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/overview/components/webserver.rst
Expand Up @@ -17,6 +17,12 @@ Content
through its web application. To serve this content, have a WSGI compatible webserver route urls
matching ``/pulp/content/`` to the Pulp WSGI application.

If you wish to serve content over both http and https, you can use a prefix when setting
base_paths for your Distributions to indicate whether the content will be served via http or
https. For example, you might prefix all your distribution paths with ``/https/.../`` or
``/http/.../`` and then proxy your webserver's https requests to ``/pulp/content/https/`` and http
requests to ``/pulp/content/http/``.

Plugin Views
Plugins can contribute views anywhere in the url namespace are are not restricted to ``/pulp/``.
Refer to your plugin documentation to understand the url needs of any given plugin. Another option
Expand Down