Mercurial > hg > orthanc-book
diff Sphinx/source/faq/nginx.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/nginx.rst Fri Apr 22 12:57:38 2016 +0200 @@ -0,0 +1,53 @@ +.. _nginx: + +How can I run Orthanc behind nginx? +=================================== + +Similarly to :ref:`Apache <apache>`, Orthanc can run behind `nginx +<https://en.wikipedia.org/wiki/Nginx>`__ through reverse +proxying. Here is the configuration snippet for nginx:: + + server { + listen 80 default_server; + ... + location /orthanc/ { + proxy_pass http://localhost:8042; + proxy_set_header HOST $host; + proxy_set_header X-Real-IP $remote_addr; + rewrite /orthanc(.*) $1 break; + } + ... + } + +*Note:* Thanks to Qaler for `submitting this information +<https://groups.google.com/d/msg/orthanc-users/oTMCM6kElfw/uj0r062mptoJ>`__. + + +.. _nginx-cors: + +Enabling CORS +------------- + +It is also possible to enable `cross-origin resource sharing (CORS) +<https://en.wikipedia.org/wiki/Cross-origin_resource_sharing>`_ with +nginx:: + + server { + listen 80 default_server; + ... + location /orthanc/ { + proxy_pass http://localhost:8042; + proxy_set_header HOST $host; + proxy_set_header X-Real-IP $remote_addr; + rewrite /orthanc(.*) $1 break; + add_header 'Access-Control-Allow-Credentials' 'true'; + add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type'; + add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; + add_header 'Access-Control-Allow-Origin' '*'; + } + ... + } + +*Note:* Thanks to Fernando for `submitting this information +<https://groups.google.com/d/msg/orthanc-users/LH-ej_fB-dw/CmWP4jM3BgAJ>`__. +