Implements the title of the page to be generated as server-side include.
This commit is contained in:
parent
4d5bb61f0a
commit
380b1de723
|
@ -17,6 +17,10 @@ server {
|
||||||
rewrite ^/(.*)$ / break;
|
rewrite ^/(.*)$ / break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
ssi on;
|
||||||
|
}
|
||||||
|
|
||||||
# BOSH
|
# BOSH
|
||||||
location /http-bind {
|
location /http-bind {
|
||||||
proxy_pass http://localhost:5280/http-bind;
|
proxy_pass http://localhost:5280/http-bind;
|
||||||
|
|
|
@ -9,6 +9,11 @@ server {
|
||||||
location ~ ^/([a-zA-Z0-9]+)$ {
|
location ~ ^/([a-zA-Z0-9]+)$ {
|
||||||
rewrite ^/(.*)$ / break;
|
rewrite ^/(.*)$ / break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
ssi on;
|
||||||
|
}
|
||||||
|
|
||||||
# BOSH
|
# BOSH
|
||||||
location /http-bind {
|
location /http-bind {
|
||||||
proxy_pass http://localhost:5280/http-bind;
|
proxy_pass http://localhost:5280/http-bind;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#" xmlns="http://www.w3.org/1999/html">
|
||||||
<head>
|
<head>
|
||||||
<title>Jitsi Videobridge meets WebRTC</title>
|
<!--#include virtual="title.html" -->
|
||||||
<link rel="icon" type="image/png" href="/images/favicon.ico"/>
|
<link rel="icon" type="image/png" href="/images/favicon.ico"/>
|
||||||
<meta property="og:title" content="Jitsi Meet"/>
|
<meta property="og:title" content="Jitsi Meet"/>
|
||||||
<meta property="og:image" content="/images/jitsilogo.png"/>
|
<meta property="og:image" content="/images/jitsilogo.png"/>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<title>Jitsi Meet</title>
|
Loading…
Reference in New Issue