From 380b1de7237aaec73a9cab58af609b793cda4cd7 Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Tue, 30 Sep 2014 16:05:28 +0300 Subject: [PATCH] Implements the title of the page to be generated as server-side include. --- debian/usr/share/doc/jitsi-meet/jitsi-meet.example | 4 ++++ doc/example-config-files/jitsi.example.com.example | 5 +++++ index.html | 2 +- title.html | 1 + 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 title.html diff --git a/debian/usr/share/doc/jitsi-meet/jitsi-meet.example b/debian/usr/share/doc/jitsi-meet/jitsi-meet.example index bf5643a5c..843bef002 100644 --- a/debian/usr/share/doc/jitsi-meet/jitsi-meet.example +++ b/debian/usr/share/doc/jitsi-meet/jitsi-meet.example @@ -17,6 +17,10 @@ server { rewrite ^/(.*)$ / break; } + location / { + ssi on; + } + # BOSH location /http-bind { proxy_pass http://localhost:5280/http-bind; diff --git a/doc/example-config-files/jitsi.example.com.example b/doc/example-config-files/jitsi.example.com.example index 3c5f054f9..68dc464de 100755 --- a/doc/example-config-files/jitsi.example.com.example +++ b/doc/example-config-files/jitsi.example.com.example @@ -9,6 +9,11 @@ server { location ~ ^/([a-zA-Z0-9]+)$ { rewrite ^/(.*)$ / break; } + + location / { + ssi on; + } + # BOSH location /http-bind { proxy_pass http://localhost:5280/http-bind; diff --git a/index.html b/index.html index 51371c65d..b48a12afd 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ - Jitsi Videobridge meets WebRTC + diff --git a/title.html b/title.html new file mode 100644 index 000000000..bd145d4d5 --- /dev/null +++ b/title.html @@ -0,0 +1 @@ +Jitsi Meet \ No newline at end of file