This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file for Synapse. | |
# | |
# This is a YAML file: see [1] for a quick introduction. Note in particular | |
# that *indentation is important*: all the elements of a list or dictionary | |
# should have the same indentation. | |
# | |
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html | |
# | |
# For more information on how to configure Synapse, including a complete accounting of | |
# each option, go to docs/usage/configuration/config_documentation.md or |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server_name: "matrix.left-org.lan" | |
pid_file: /data/homeserver.pid | |
listeners: | |
- port: 8008 | |
tls: false | |
type: http | |
x_forwarded: true | |
resources: | |
- names: [client, federation] | |
compress: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
matrix-left-org: | |
image: matrixdotorg/synapse:v1.71.0 | |
hostname: synapse.left-org.lan | |
networks: | |
- matrix-lan | |
ports: | |
- 8808:8008 | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ { | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ 13.6, 47.23, 2500 ] | |
}, | |
"type": "Feature", | |
"id": 0, | |
"properties": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XYZ from 'ol/source/XYZ' | |
import TileState from 'ol/TileState' | |
import Database, { Integer } from 'better-sqlite3' | |
const MBTileSource = options => { | |
/* instance of the SQLite db */ | |
const db = new Database(options.path, { readonly: true }) | |
const metadata = name => { | |
const result = db.prepare('SELECT value FROM metadata WHERE name=?').get(name) |