Replace DOMAIN with example.com

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
This commit is contained in:
Suguru Hirahara
2024-10-17 22:17:56 +09:00
parent 95ab7fabd0
commit 90cfdabb2b
118 changed files with 304 additions and 304 deletions

View File

@ -1,23 +1,23 @@
# This is a sample file demonstrating how to set up reverse-proxy for matrix.DOMAIN
# This is a sample file demonstrating how to set up reverse-proxy for matrix.example.com
<VirtualHost *:80>
ServerName matrix.DOMAIN
ServerName matrix.example.com
# You may wish to handle the /.well-known/acme-challenge paths here somehow,
# if you're using ACME (Let's Encrypt) certificates.
Redirect permanent / https://matrix.DOMAIN/
Redirect permanent / https://matrix.example.com/
</VirtualHost>
# Client-Server API
<VirtualHost *:443>
ServerName matrix.DOMAIN
ServerName matrix.example.com
SSLEngine On
# If you manage SSL certificates by yourself, these paths will differ.
SSLCertificateFile /path/to/matrix.DOMAIN/fullchain.pem
SSLCertificateKeyFile /path/to/matrix.DOMAIN/privkey.pem
SSLCertificateFile /path/to/matrix.example.com/fullchain.pem
SSLCertificateKeyFile /path/to/matrix.example.com/privkey.pem
SSLProxyEngine on
SSLProxyProtocol +TLSv1.2 +TLSv1.3
@ -32,20 +32,20 @@
ProxyPass / http://127.0.0.1:81/ retry=0 nocanon
ProxyPassReverse / http://127.0.0.1:81/
ErrorLog ${APACHE_LOG_DIR}/matrix.DOMAIN-error.log
CustomLog ${APACHE_LOG_DIR}/matrix.DOMAIN-access.log combined
ErrorLog ${APACHE_LOG_DIR}/matrix.example.com-error.log
CustomLog ${APACHE_LOG_DIR}/matrix.example.com-access.log combined
</VirtualHost>
# Server-Server (federation) API
Listen 8448
<VirtualHost *:8448>
ServerName matrix.DOMAIN
ServerName matrix.example.com
SSLEngine On
# If you manage SSL certificates by yourself, these paths will differ.
SSLCertificateFile /matrix/ssl/config/live/matrix.DOMAIN/fullchain.pem
SSLCertificateKeyFile /matrix/ssl/config/live/matrix.DOMAIN/privkey.pem
SSLCertificateFile /matrix/ssl/config/live/matrix.example.com/fullchain.pem
SSLCertificateKeyFile /matrix/ssl/config/live/matrix.example.com/privkey.pem
SSLProxyEngine on
SSLProxyProtocol +TLSv1.2 +TLSv1.3
@ -60,6 +60,6 @@ Listen 8448
ProxyPass / http://127.0.0.1:8449/ retry=0 nocanon
ProxyPassReverse / http://127.0.0.1:8449/
ErrorLog ${APACHE_LOG_DIR}/matrix.DOMAIN-error.log
CustomLog ${APACHE_LOG_DIR}/matrix.DOMAIN-access.log combined
ErrorLog ${APACHE_LOG_DIR}/matrix.example.com-error.log
CustomLog ${APACHE_LOG_DIR}/matrix.example.com-access.log combined
</VirtualHost>