Przeglądaj źródła

Merge pull request #137 from jdreichmann/master

Add some examples for caddy as an external webserver
pull/145/head
Slavi Pantaleev 6 lat temu
committed by GitHub
rodzic
commit
d4f2cb91d7
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: 4AEE18F83AFDEB23
5 zmienionych plików z 53 dodań i 0 usunięć
  1. +3
    -0
      docs/configuring-playbook-own-webserver.md
  2. +7
    -0
      examples/caddy/matrix-dimension
  3. +8
    -0
      examples/caddy/matrix-riot-web
  4. +28
    -0
      examples/caddy/matrix-synapse
  5. +7
    -0
      examples/caddy/matrix-util

+ 3
- 0
docs/configuring-playbook-own-webserver.md Wyświetl plik

@@ -49,6 +49,9 @@ matrix_nginx_proxy_ssl_protocols: "TLSv1.1 TLSv1.2"

Once you've followed the [Preparation](#preparation) guide above, you can take a look at the [examples/apache](../examples/apache) directory for a sample configuration.

## Using your own external caddy webserver

After following the [Preparation](#preparation) guide above, you can take a look at the [examples/caddy](../examples/caddy) directory for a sample configuration.

## Using another external webserver



+ 7
- 0
examples/caddy/matrix-dimension Wyświetl plik

@@ -0,0 +1,7 @@
https://dimension.DOMAIN {
tls /matrix/ssl/config/live/dimension.DOMAIN/fullchain.pem /matrix/ssl/config/live/dimension.DOMAIN/privkey.pem

proxy / http://127.0.0.1:8134/ {
transparent
}
}

+ 8
- 0
examples/caddy/matrix-riot-web Wyświetl plik

@@ -0,0 +1,8 @@
https://riot.DOMAIN {
# These might differ if you are supplying your own certificates
tls /matrix/ssl/config/live/riot.DOMAIN/fullchain.pem /matrix/ssl/config/live/riot.DOMAIN/privkey.pem

proxy / http://127.0.0.1:8765 {
transparent
}
}

+ 28
- 0
examples/caddy/matrix-synapse Wyświetl plik

@@ -0,0 +1,28 @@
https://matrix.DOMAIN {
# If you use your own certificates, your path may differ
tls /matrix/ssl/config/live/matrix.DOMAIN/fullchain.pem /matrix/ssl/config/live/matrix.DOMAIN/privkey.pem

root /matrix/static-files

header {
Access-Control-Allow-Origin *
Strict-Transport-Security "mag=age=31536000;"
X-Frame-Options "DENY"
X-XSS-Protection "1; mode=block"
}

# Identity server traffic
proxy /_matrix/identity matrix-msisd:8090 {
transparent
}
proxy /_matrix/client/r0/user_directory/search matrix-msisd:8090 {
transparent
}

# Synapse Client<>Server API
proxy / matrix-synapse:8008 {
transparent
without /.well-known/ /_matrix/identity/ /_matrix/client/r0/user_directory/search
}

}

+ 7
- 0
examples/caddy/matrix-util Wyświetl plik

@@ -0,0 +1,7 @@
:80 {
# Redirect ACME-Challenge traffic to port 2402
proxy /.well-known/acme-challenge http://127.0.0.1:2402

# Redirect all other traffic to HTTPS
redir / https://{host}{uri} 301
}

Ładowanie…
Anuluj
Zapisz