summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.rst
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.rst')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.rst b/documentation/dev-manual/dev-manual-common-tasks.rst
index 7cb25c02cd..e993a8ce40 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.rst
+++ b/documentation/dev-manual/dev-manual-common-tasks.rst
@@ -7223,11 +7223,11 @@ Host or Server Machine Setup
7223 7223
7224Although other protocols are possible, a server using HTTP typically 7224Although other protocols are possible, a server using HTTP typically
7225serves packages. If you want to use HTTP, then set up and configure a 7225serves packages. If you want to use HTTP, then set up and configure a
7226web server such as Apache 2, lighttpd, or SimpleHTTPServer on the 7226web server such as Apache 2, lighttpd, or Python web server on the
7227machine serving the packages. 7227machine serving the packages.
7228 7228
7229To keep things simple, this section describes how to set up a 7229To keep things simple, this section describes how to set up a
7230SimpleHTTPServer web server to share package feeds from the developer's 7230Python web server to share package feeds from the developer's
7231machine. Although this server might not be the best for a production 7231machine. Although this server might not be the best for a production
7232environment, the setup is simple and straight forward. Should you want 7232environment, the setup is simple and straight forward. Should you want
7233to use a different server more suited for production (e.g. Apache 2, 7233to use a different server more suited for production (e.g. Apache 2,
@@ -7242,7 +7242,7 @@ setting of "package_rpm":
7242:: 7242::
7243 7243
7244 $ cd ~/poky/build/tmp/deploy/rpm 7244 $ cd ~/poky/build/tmp/deploy/rpm
7245 $ python -m SimpleHTTPServer 7245 $ python3 -m http.server
7246 7246
7247.. _runtime-package-management-target: 7247.. _runtime-package-management-target:
7248 7248