Mercurial > hg > orthanc-book
diff Sphinx/source/faq/apache.rst @ 0:901e8961f46e
initial commit
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Apr 2016 12:57:38 +0200 |
parents | |
children | 736d30badda0 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Sphinx/source/faq/apache.rst Fri Apr 22 12:57:38 2016 +0200 @@ -0,0 +1,18 @@ +.. _apache: + +How can I run Orthanc behind Apache? +==================================== + +It is possible to make Orthanc run behind Apache using the `reverse +proxy mechanism <https://en.wikipedia.org/wiki/Reverse_proxy>`_. To +map the REST API of an Orthanc server listening on the port 8000 on +the URI ``/Orthanc``, paste the following code in your +``/etc/apache2/httpd.conf``:: + + LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so + LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so + ProxyRequests On + ProxyPass /Orthanc/ http://localhost:8000/ retry=0 + +*Note*: These instructions are for Ubuntu 11.10. You most probably +have to adapt the absolute paths above to your distribution.