summary refs log tree commit diff
path: root/synapse/static
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-12-11 16:24:06 +0100
committerGitHub <noreply@github.com>2018-12-11 16:24:06 +0100
commit95c1f6500b2b1d98570a2ebc52f29c0c12ef2709 (patch)
tree014cfa94ceeaaa366534028819eb7cf1df536e29 /synapse/static
parentMerge pull request #4291 from matrix-org/rav/disable_pager_in_ci (diff)
parentMerge branch 'rav/disable_pager_in_ci' into rav/welcome_page (diff)
downloadsynapse-95c1f6500b2b1d98570a2ebc52f29c0c12ef2709.tar.xz
Merge pull request #4289 from matrix-org/rav/welcome_page
Add a welcome page to the static resources
Diffstat (limited to 'synapse/static')
-rw-r--r--synapse/static/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/synapse/static/index.html b/synapse/static/index.html
new file mode 100644
index 0000000000..d664239983
--- /dev/null
+++ b/synapse/static/index.html
@@ -0,0 +1,26 @@
+<html>
+   <head>
+       <title>Synapse is running</title>
+       <style>
+           body {
+               width: 30em;
+               margin: 0 auto;
+               font-family: Tahoma, Verdana, Arial, sans-serif;
+           }
+           h1 {
+               text-align: center;
+           }
+       </style>
+   </head>
+   <body>
+       <h1>Synapse is running</h1>
+       <p>Congratulations!</p>
+       <p>Your Synapse server is listening on this port and is ready for messages.</p>
+       <p>To use this server you'll need a client - e.g. one of
+       <a href="https://matrix.org/docs/projects/try-matrix-now.html#clients">this list of Matrix clients</a>.</p>
+       <p>You can find (federated) rooms that might be of interest to you on
+       <a href="https://view.matrix.org/">view.matrix.org</a>.</p>
+       <p>Or you just start creating your own rooms with your friends.</p>
+       <p>Welcome to the Matrix universe :)</p>
+   </body>
+</html>