aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2016-07-04 17:55:33 -0500
committerMatt Rude <[email protected]>2016-07-04 17:55:33 -0500
commitfc0504b7f957795eda4696cab287e34ff7f9a747 (patch)
treeb5b435e8b9f6aa33d52c4df2e06bdad1f35ab2d8
parent8673bc19829b877d522848e577b7d93bbfe4f6f5 (diff)
downloadxmpp-site-fc0504b7f957795eda4696cab287e34ff7f9a747.tar.gz
xmpp-site-fc0504b7f957795eda4696cab287e34ff7f9a747.tar.bz2
xmpp-site-fc0504b7f957795eda4696cab287e34ff7f9a747.zip
updates
-rw-r--r--README.md43
-rw-r--r--_config.yml2
-rw-r--r--_includes/header.html2
-rw-r--r--css/site.less13
-rw-r--r--doc/source.md2
-rw-r--r--doc/supported_standards.md2
-rw-r--r--img/favicon.ico (renamed from favicon.ico)bin3474 -> 3474 bytes
-rw-r--r--index.md2
8 files changed, 49 insertions, 17 deletions
diff --git a/README.md b/README.md
index 8f0a77b..a799bf7 100644
--- a/README.md
+++ b/README.md
@@ -24,19 +24,48 @@ A simple script would be
### Nginx Configuration
#----------------------------------------------------------------------
- # mattrude.com XMPP Service
+ # therudes.im XMPP Service
#----------------------------------------------------------------------
- # im.mattrude.com
+ # therudes.im
+ server {
+ listen 443 ssl http2;
+ listen [::]:443 ssl http2;
+ root /var/www/therudes.im;
+ server_name therudes.im;
+
+ ssl_certificate /var/www/openssl/certs/therudes_im.crt;
+ ssl_certificate_key /var/www/openssl/private/therudes_im.key;
+
+ location /favicon.ico { alias /var/www/therudes.im/img/favicon.ico; }
+ error_page 404 /404/index.html;
+
+ location /pastebin/ {
+ proxy_pass http://therudes.com:5280;
+ }
+
+ location /status {
+ proxy_pass http://therudes.com:5280;
+ }
+ }
+
server {
listen 80;
listen [::]:80;
- listen <set your IP>11371;
- listen [set your IPv6 IP]:11371;
- server_name im.mattrude.com;
- root /var/www/im.mattrude.com;
- }
+ root /var/www/therudes.im;
+ server_name therudes.im;
+
+ location /favicon.ico { alias /var/www/therudes.im/img/favicon.ico; }
+ error_page 404 /404/index.html;
+ location /pastebin/ {
+ proxy_pass http://therudes.com:5280;
+ }
+
+ location /status {
+ proxy_pass http://therudes.com:5280;
+ }
+ }
### Installing Jekyll
Since Jekyll only needs to be installed on your build system. Below are a few quick how-to's how setting up your build system.
diff --git a/_config.yml b/_config.yml
index 5e4690b..c5b71e1 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,5 +1,5 @@
# Site settings
-title: The therudes.com XMPP Service
+title: therudes.com Communication Service
description: ""
url: "https://therudes.com"
diff --git a/_includes/header.html b/_includes/header.html
index 5d04de7..a91f65d 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width">
<meta name="description" content="{{ site.description }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
- <link rel="shortcut icon" href="{{ "/favicon.ico" | prepend: site.url }}"/>
+ <link rel="shortcut icon" href="{{ "/img/favicon.ico" | prepend: site.url }}"/>
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.url }}">
</head>
<body>
diff --git a/css/site.less b/css/site.less
index 75d42e8..e5c5dcb 100644
--- a/css/site.less
+++ b/css/site.less
@@ -152,13 +152,16 @@ fieldset {
color: inherit;
}
-
-h1 a {
- text-decoration: none;
-}
-h1 small {
+h1 {
+ a {
+ text-decoration: none;
+ }
+ small {
color: #777;
+ font-size: 0.7em;
+ }
}
+
h4 small {
line-height: 1;
color: #777;
diff --git a/doc/source.md b/doc/source.md
index 0050cfa..396991c 100644
--- a/doc/source.md
+++ b/doc/source.md
@@ -8,5 +8,5 @@ permalink: /source/
This site is running [prosody](https://prosody.im) version {{ site.prosody-version }}. The source for prosody may be found at [hg.prosody.im](https://hg.prosody.im/). The program prosody is licensed under the [MIT/X11 license](https://prosody.im/source/mit).
### Site Source Locations
-The source for this website may be found in the github repository [mattrude/im.mattrude.com](https://github.com/mattrude/im.mattrude.com/tree/therudes_com#readme). The site is licensed under the [GNU General Public License, version 3 (GPLv3)](https://github.com/mattrude/im.mattrude.com/blob/therudes_com/LICENSE), and may be used or modified under the terms of that license.
+The source for this website may be found in the github repository [mattrude/therudes.im](https://github.com/mattrude/therudes.im#readme). The site is licensed under the [GNU General Public License, version 3 (GPLv3)](https://github.com/mattrude/im.mattrude.com/blob/therudes_com/LICENSE), and may be used or modified under the terms of that license.
diff --git a/doc/supported_standards.md b/doc/supported_standards.md
index 09a8919..e28a38a 100644
--- a/doc/supported_standards.md
+++ b/doc/supported_standards.md
@@ -4,7 +4,7 @@ title: Supported XMPP Standards
permalink: /doc/supported-standards/
---
-This service supports the following XMPP standards.
+This service is running [Prosody]({{ site.url }}/doc/definitions/#prosody) version {{ site.prosody-version }} and supports the following XMPP standards.
<table>
<thead>
diff --git a/favicon.ico b/img/favicon.ico
index 1a2f39d..1a2f39d 100644
--- a/favicon.ico
+++ b/img/favicon.ico
Binary files differ
diff --git a/index.md b/index.md
index 2618f0a..cd9a4b0 100644
--- a/index.md
+++ b/index.md
@@ -4,7 +4,7 @@ title: Home
permalink: /
---
-This is the **Rude Family's** XMPP services website. This site is here to provide basic infromation on useing this service. A [XMPP]({{ site.url }}/doc/definitions/#xmpp-server) service provides messaging ability via a local client. By using this service, security in increased due to the settings and the fact this service is owned and ran by the users.
+This is the **Rude Family's** communication services website. This site is here to provide basic infromation on useing this service. A [XMPP]({{ site.url }}/doc/definitions/#xmpp-server) service provides messaging ability via a local client. By using this service, security in increased due to the settings and the fact this service is owned and ran by the users.
## How to use the service