diff options
Diffstat (limited to 'latest/reverse_proxy.html')
-rw-r--r-- | latest/reverse_proxy.html | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/latest/reverse_proxy.html b/latest/reverse_proxy.html index 2659dc34cf..2886a8e7a0 100644 --- a/latest/reverse_proxy.html +++ b/latest/reverse_proxy.html @@ -28,6 +28,7 @@ <link rel="stylesheet" href="docs/website_files/table-of-contents.css"> <link rel="stylesheet" href="docs/website_files/remove-nav-buttons.css"> <link rel="stylesheet" href="docs/website_files/indent-section-headers.css"> + <link rel="stylesheet" href="docs/website_files/version-picker.css"> </head> <body> <!-- Provide site root to javascript --> @@ -103,6 +104,18 @@ <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar"> <i class="fa fa-search"></i> </button> + <div class="version-picker"> + <div class="dropdown"> + <div class="select"> + <span></span> + <i class="fa fa-chevron-down"></i> + </div> + <input type="hidden" name="version"> + <ul class="dropdown-menu"> + <!-- Versions will be added dynamically in version-picker.js --> + </ul> + </div> + </div> </div> <h1 class="menu-title">Synapse</h1> @@ -297,6 +310,10 @@ frontend matrix-federation backend matrix server matrix 127.0.0.1:8008 </code></pre> +<p>Example configuration, if using a UNIX socket. The configuration lines regarding the frontends do not need to be modified.</p> +<pre><code>backend matrix + server matrix unix@/run/synapse/main_public.sock +</code></pre> <p><a href="delegate.html">Delegation</a> example:</p> <pre><code>frontend https acl matrix-well-known-client-path path /.well-known/matrix/client @@ -407,5 +424,7 @@ we do not recommend exposing them to the public internet without good reason.</p <!-- Custom JS scripts --> <script type="text/javascript" src="docs/website_files/table-of-contents.js"></script> + <script type="text/javascript" src="docs/website_files/version-picker.js"></script> + <script type="text/javascript" src="docs/website_files/version.js"></script> </body> -</html> \ No newline at end of file +</html> |