mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Generate documentation
This commit is contained in:
parent
b002faed60
commit
f03a12120c
1 changed files with 9 additions and 4 deletions
13
master.html
13
master.html
|
@ -541,10 +541,15 @@ starts. To start the service manually open <strong>Services</strong> in
|
||||||
</section>
|
</section>
|
||||||
<section class="level3" id="reverse-proxy">
|
<section class="level3" id="reverse-proxy">
|
||||||
<h3>Reverse Proxy <a class="headerlink" href="#reverse-proxy">¶</a></h3>
|
<h3>Reverse Proxy <a class="headerlink" href="#reverse-proxy">¶</a></h3>
|
||||||
<p>When a reverse proxy is used, the path at which Radicale is available
|
<p>When a reverse proxy is used, and Radicale should be made available
|
||||||
must be provided via the <code>X-Script-Name</code> header. The proxy
|
at a path below the root (such as <code>/radicale/</code>), then this
|
||||||
must remove the location from the URL path that is forwarded to
|
path must be provided via the <code>X-Script-Name</code> header (without
|
||||||
Radicale.</p>
|
a trailing <code>/</code>). The proxy must remove the location from the
|
||||||
|
URL path that is forwarded to Radicale. If Radicale should be made
|
||||||
|
available at the root of the web server (in the nginx case using
|
||||||
|
<code>location /</code>), then the setting of the
|
||||||
|
<code>X-Script-Name</code> header should be removed from the example
|
||||||
|
below.</p>
|
||||||
<p>Example <strong>nginx</strong> configuration:</p>
|
<p>Example <strong>nginx</strong> configuration:</p>
|
||||||
<pre class="nginx"><code>location /radicale/ { # The trailing / is important!
|
<pre class="nginx"><code>location /radicale/ { # The trailing / is important!
|
||||||
proxy_pass http://localhost:5232/; # The / is important!
|
proxy_pass http://localhost:5232/; # The / is important!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue