Browse Source

add matrix

python3
Andrea Cimbalo 7 years ago
parent
commit
d75b379e8a
9 changed files with 526 additions and 6 deletions
  1. +2
    -6
      matrix.yaml
  2. +8
    -0
      roles/matrix-synapse/meta/main.yaml
  3. +31
    -0
      roles/matrix-synapse/tasks/main.yaml
  4. +441
    -0
      roles/matrix-synapse/templates/homeserver.yaml.j2
  5. +2
    -0
      roles/riot-web/defaults/main.yaml
  6. +6
    -0
      roles/riot-web/meta/main.yaml
  7. +23
    -0
      roles/riot-web/tasks/main.yaml
  8. +10
    -0
      roles/riot-web/templates/config.json.j2
  9. +3
    -0
      roles/riot-web/templates/riot.conf.nginx.j2

+ 2
- 6
matrix.yaml View File

@ -11,12 +11,8 @@
roles:
- role: dns_record
- role: reverse_proxy
tasks:
- name: Install synapse
apt:
name: "{{ item }}"
with_items:
- matrix-synapse
- role: matrix-synapse
- role: riot-web
- hosts: status
roles:
- role: icinga2-monitoring

+ 8
- 0
roles/matrix-synapse/meta/main.yaml View File

@ -0,0 +1,8 @@
---
dependencies:
- role: nginx
is_proxy: true
parent_role_path: "matrix-synapse"
remote_host: "http://127.0.0.1:8008/_matrix"
proxy_location_path: "_matrix"
server_fqdn: "{{ ansible_hostname }}.lilik.it"

+ 31
- 0
roles/matrix-synapse/tasks/main.yaml View File

@ -0,0 +1,31 @@
- name: set synapse server name
debconf:
name: 'matrix-synapse'
question: 'matrix-synapse/server-name'
vtype: 'string'
value: '{{ ansible_hostname }}'
- name: install synapse
include_role:
name: service
# static: yes # see static include issue: https://github.com/ansible/ansible/issues/13485
vars:
service_name: matrix-synapse
service_packages:
- matrix-synapse
- name: fix synapse folders permissions
file:
path: "{{ item }}"
owner: matrix-synapse
group: nogroup
mode: 0750
state: directory
with_items:
- /etc/matrix-synapse
- /etc/matrix-synapse/conf.d
- template:
src: homeserver.yaml.j2
dest: /etc/matrix-synapse/homeserver.yaml
notify: "restart matrix-synapse"

+ 441
- 0
roles/matrix-synapse/templates/homeserver.yaml.j2 View File

@ -0,0 +1,441 @@
# vim:ft=yaml
# PEM encoded X509 certificate for TLS.
# You can replace the self-signed certificate that synapse
# autogenerates on launch with your own SSL certificate + key pair
# if you like. Any required intermediary certificates can be
# appended after the primary certificate in hierarchical order.
tls_certificate_path: "/etc/letsencrypt/live/{{ ansible_hostname }}.lilik.it/cert.pem"
# PEM encoded private key for TLS
#tls_private_key_path: "/etc/matrix-synapse/homeserver.tls.key"
# PEM dh parameters for ephemeral keys
tls_dh_params_path: "/etc/nginx/dhparam.pem"
# Don't bind to the https port
#no_tls: False
no_tls: True
## Server ##
# When running as a daemon, the file to store the pid in
pid_file: "/var/run/matrix-synapse.pid"
# Whether to serve a web client from the HTTP/HTTPS root resource.
web_client: False
# The public-facing base URL for the client API (not including _matrix/...)
#public_baseurl: https://example.com:8448/
public_baseurl: https://{{ ansible_hostname }}.lilik.it/
# Set the soft limit on the number of file descriptors synapse can use
# Zero is used to indicate synapse should set the soft limit to the
# hard limit.
soft_file_limit: 0
# The GC threshold parameters to pass to `gc.set_threshold`, if defined
# gc_thresholds: [700, 10, 10]
# A list of other Home Servers to fetch the public room directory from
# and include in the public room directory of this home server
# This is a temporary stopgap solution to populate new server with a
# list of rooms until there exists a good solution of a decentralized
# room directory.
# secondary_directory_servers:
# - matrix.org
# - vector.im
# List of ports that Synapse should listen on, their purpose and their
# configuration.
listeners:
# Main HTTPS listener
# For when matrix traffic is sent directly to synapse.
# -
# # The port to listen for HTTPS requests on.
# port: 8448
#
# # Local interface to listen on.
# # The empty string will cause synapse to listen on all interfaces.
# bind_address: 127.0.0.1
#
# # This is a 'http' listener, allows us to specify 'resources'.
# type: http
#
# tls: false
#
# # Use the X-Forwarded-For (XFF) header as the client IP and not the
# # actual client IP.
# x_forwarded: true
#
# # List of HTTP resources to serve on this listener.
# resources:
# -
# # List of resources to host on this listener.
# names:
# - client # The client-server APIs, both v1 and v2
# # - webclient # The bundled webclient.
#
# # Should synapse compress HTTP responses to clients that support it?
# # This should be disabled if running synapse behind a load balancer
# # that can do automatic compression.
# compress: false
#
# - names: [federation] # Federation APIs
# compress: false
# Unsecure HTTP listener,
# For when matrix traffic passes through loadbalancer that unwraps TLS.
- port: 8008
tls: false
bind_address: 127.0.0.1
type: http
x_forwarded: true
resources:
- names: [client, webclient]
compress: false
- names: [federation]
compress: false
# Turn on the twisted ssh manhole service on localhost on the given
# port.
# - port: 9000
# bind_address: 127.0.0.1
# type: manhole
# Database configuration
database:
# The database engine name
name: "sqlite3"
# Arguments to pass to the engine
args:
# Path to the database
database: "/var/lib/matrix-synapse/homeserver.db"
# Number of events to cache in memory.
event_cache_size: "10K"
# A yaml python logging config file
log_config: "/etc/matrix-synapse/log.yaml"
# Stop twisted from discarding the stack traces of exceptions in
# deferreds by waiting a reactor tick before running a deferred's
# callbacks.
# full_twisted_stacktraces: true
## Ratelimiting ##
# Number of messages a client can send per second
rc_messages_per_second: 0.2
# Number of message a client can send before being throttled
rc_message_burst_count: 10.0
# The federation window size in milliseconds
federation_rc_window_size: 1000
# The number of federation requests from a single server in a window
# before the server will delay processing the request.
federation_rc_sleep_limit: 10
# The duration in milliseconds to delay processing events from
# remote servers by if they go over the sleep limit.
federation_rc_sleep_delay: 500
# The maximum number of concurrent federation requests allowed
# from a single server
federation_rc_reject_limit: 50
# The number of federation requests to concurrently process from a
# single server
federation_rc_concurrent: 3
# Directory where uploaded images and attachments are stored.
media_store_path: "/var/lib/matrix-synapse/media"
# The largest allowed upload size in bytes
max_upload_size: "10M"
# Maximum number of pixels that will be thumbnailed
max_image_pixels: "32M"
# Whether to generate new thumbnails on the fly to precisely match
# the resolution requested by the client. If true then whenever
# a new resolution is requested by the client the server will
# generate a new thumbnail. If false the server will pick a thumbnail
# from a precalculated list.
dynamic_thumbnails: false
# List of thumbnail to precalculate when an image is uploaded.
thumbnail_sizes:
- width: 32
height: 32
method: crop
- width: 96
height: 96
method: crop
- width: 320
height: 240
method: scale
- width: 640
height: 480
method: scale
- width: 800
height: 600
method: scale
# Is the preview URL API enabled? If enabled, you *must* specify
# an explicit url_preview_ip_range_blacklist of IPs that the spider is
# denied from accessing.
url_preview_enabled: False
# List of IP address CIDR ranges that the URL preview spider is denied
# from accessing. There are no defaults: you must explicitly
# specify a list for URL previewing to work. You should specify any
# internal services in your network that you do not want synapse to try
# to connect to, otherwise anyone in any Matrix room could cause your
# synapse to issue arbitrary GET requests to your internal services,
# causing serious security issues.
#
# url_preview_ip_range_blacklist:
# - '127.0.0.0/8'
# - '10.0.0.0/8'
# - '172.16.0.0/12'
# - '192.168.0.0/16'
#
# List of IP address CIDR ranges that the URL preview spider is allowed
# to access even if they are specified in url_preview_ip_range_blacklist.
# This is useful for specifying exceptions to wide-ranging blacklisted
# target IP ranges - e.g. for enabling URL previews for a specific private
# website only visible in your network.
#
# url_preview_ip_range_whitelist:
# - '192.168.1.1'
# Optional list of URL matches that the URL preview spider is
# denied from accessing. You should use url_preview_ip_range_blacklist
# in preference to this, otherwise someone could define a public DNS
# entry that points to a private IP address and circumvent the blacklist.
# This is more useful if you know there is an entire shape of URL that
# you know that will never want synapse to try to spider.
#
# Each list entry is a dictionary of url component attributes as returned
# by urlparse.urlsplit as applied to the absolute form of the URL. See
# https://docs.python.org/2/library/urlparse.html#urlparse.urlsplit
# The values of the dictionary are treated as an filename match pattern
# applied to that component of URLs, unless they start with a ^ in which
# case they are treated as a regular expression match. If all the
# specified component matches for a given list item succeed, the URL is
# blacklisted.
#
# url_preview_url_blacklist:
# # blacklist any URL with a username in its URI
# - username: '*'
#
# # blacklist all *.google.com URLs
# - netloc: 'google.com'
# - netloc: '*.google.com'
#
# # blacklist all plain HTTP URLs
# - scheme: 'http'
#
# # blacklist http(s)://www.acme.com/foo
# - netloc: 'www.acme.com'
# path: '/foo'
#
# # blacklist any URL with a literal IPv4 address
# - netloc: '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$'
# The largest allowed URL preview spidering size in bytes
max_spider_size: "10M"
## Captcha ##
# This Home Server's ReCAPTCHA public key.
recaptcha_public_key: "YOUR_PUBLIC_KEY"
# This Home Server's ReCAPTCHA private key.
recaptcha_private_key: "YOUR_PRIVATE_KEY"
# Enables ReCaptcha checks when registering, preventing signup
# unless a captcha is answered. Requires a valid ReCaptcha
# public/private key.
enable_registration_captcha: False
# A secret key used to bypass the captcha test entirely.
#captcha_bypass_secret: "YOUR_SECRET_HERE"
# The API endpoint to use for verifying m.login.recaptcha responses.
recaptcha_siteverify_api: "https://www.google.com/recaptcha/api/siteverify"
## Turn ##
# The public URIs of the TURN server to give to clients
turn_uris: []
# The shared secret used to compute passwords for the TURN server
turn_shared_secret: "YOUR_SHARED_SECRET"
# How long generated TURN credentials last
turn_user_lifetime: "1h"
## Registration ##
# Enable registration for new users.
enable_registration: False
# If set, allows registration by anyone who also has the shared
# secret, even if registration is otherwise disabled.
# registration_shared_secret: <PRIVATE STRING>
# Sets the expiry for the short term user creation in
# milliseconds. For instance the bellow duration is two weeks
# in milliseconds.
user_creation_max_duration: 1209600000
# Set the number of bcrypt rounds used to generate password hash.
# Larger numbers increase the work factor needed to generate the hash.
# The default number of rounds is 12.
bcrypt_rounds: 12
# Allows users to register as guests without a password/email/etc, and
# participate in rooms hosted on this server which have been made
# accessible to anonymous users.
allow_guest_access: False
# The list of identity servers trusted to verify third party
# identifiers by this server.
trusted_third_party_id_servers:
- matrix.org
- vector.im
## Metrics ###
# Enable collection and rendering of performance metrics
enable_metrics: False
## API Configuration ##
# A list of event types that will be included in the room_invite_state
room_invite_state_types:
- "m.room.join_rules"
- "m.room.canonical_alias"
- "m.room.avatar"
- "m.room.name"
# A list of application service config file to use
app_service_config_files: []
# macaroon_secret_key: <PRIVATE STRING>
# Used to enable access token expiration.
expire_access_token: False
## Signing Keys ##
# Path to the signing key to sign messages with
signing_key_path: "/etc/matrix-synapse/homeserver.signing.key"
# The keys that the server used to sign messages with but won't use
# to sign new messages. E.g. it has lost its private key
old_signing_keys: {}
# "ed25519:auto":
# # Base64 encoded public key
# key: "The public part of your old signing key."
# # Millisecond POSIX timestamp when the key expired.
# expired_ts: 123456789123
# How long key response published by this server is valid for.
# Used to set the valid_until_ts in /key/v2 APIs.
# Determines how quickly servers will query to check which keys
# are still valid.
key_refresh_interval: "1d" # 1 Day.
# The trusted servers to download signing keys from.
perspectives:
servers:
"matrix.org":
verify_keys:
"ed25519:auto":
key: "Noi6WqcDj0QmPxCNQqgezwTlBKrfqehY1u2FyWP9uYw"
# Enable SAML2 for registration and login. Uses pysaml2
# config_path: Path to the sp_conf.py configuration file
# idp_redirect_url: Identity provider URL which will redirect
# the user back to /login/saml2 with proper info.
# See pysaml2 docs for format of config.
#saml2_config:
# enabled: true
# config_path: "/home/erikj/git/synapse/sp_conf.py"
# idp_redirect_url: "http://test/idp"
# Enable CAS for registration and login.
#cas_config:
# enabled: true
# server_url: "https://cas-server.com"
# service_url: "https://homesever.domain.com:8448"
# #required_attributes:
# # name: value
# The JWT needs to contain a globally unique "sub" (subject) claim.
#
# jwt_config:
# enabled: true
# secret: "a secret"
# algorithm: "HS256"
password_providers:
- module: "ldap_auth_provider.LdapAuthProvider"
config:
enabled: true
uri: "ldap://10.150.42.10"
port: 389
start_tls: false
base: "o=People,dc=lilik,dc=it"
attributes:
uid: "uid"
mail: "mail"
name: "givenName"
bind_dn:
bind_password:
filter: "(memberOf=cn=im,o=Group,dc=lilik,dc=it)"
# Enable password for login.
password_config:
enabled: true
# Enable sending emails for notification events
#email:
# enable_notifs: false
# smtp_host: "localhost"
# smtp_port: 25
# notif_from: "Your Friendly %(app)s Home Server <noreply@example.com>"
# app_name: Matrix
# template_dir: res/templates
# notif_template_html: notif_mail.html
# notif_template_text: notif_mail.txt
# notif_for_new_users: True

+ 2
- 0
roles/riot-web/defaults/main.yaml View File

@ -0,0 +1,2 @@
# Based on https://github.com/vector-im/riot-web/releases
riot_web_version: "v0.12.2"

+ 6
- 0
roles/riot-web/meta/main.yaml View File

@ -0,0 +1,6 @@
---
dependencies:
- role: nginx
config_name: "riot"
server_fqdn: "{{ ansible_hostname }}.lilik.it"
parent_role_path: riot-web

+ 23
- 0
roles/riot-web/tasks/main.yaml View File

@ -0,0 +1,23 @@
- name: install git
apt:
name: "{{ item }}"
with_items:
- git
- file:
path: /srv/riot-web
state: directory
mode: 0755
owner: www-data
group: www-data
- unarchive:
src: "https://github.com/vector-im/riot-web/releases/download/{{ riot_web_version }}/riot-{{ riot_web_version }}.tar.gz"
dest: /srv/riot-web
remote_src: True
owner: www-data
group: www-data
- template:
src: config.json.j2
dest: "/srv/riot-web/riot-{{ riot_web_version }}/config.json"

+ 10
- 0
roles/riot-web/templates/config.json.j2 View File

@ -0,0 +1,10 @@
{
"default_hs_url": "https://{{ ansible_hostname }}.lilik.it",
"default_is_url": "https://{{ ansible_hostname }}.lilik.it",
"brand": "LILiK",
"integrations_ui_url": "https://scalar.vector.im/",
"integrations_rest_url": "https://scalar.vector.im/api",
"bug_report_endpoint_url": "https://riot.im/bugreports/submit",
"enableLabs": true,
"welcomeUserId": "@user:lilik.it"
}

+ 3
- 0
roles/riot-web/templates/riot.conf.nginx.j2 View File

@ -0,0 +1,3 @@
location / {
root /srv/riot-web/riot-{{ riot_web_version }};
}

Loading…
Cancel
Save