Update to v0.99.3

This commit is contained in:
Matthias
2019-04-01 15:34:45 +02:00
parent 740c712f2d
commit d9eeeea4f8
4 changed files with 9 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
[0.1.9]
* Update to synapse v0.99.3
[0.1.8] [0.1.8]
* Update to synapse v0.99.0 * Update to synapse v0.99.0
* Fixed missing LDAP stuff * Fixed missing LDAP stuff

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "standalone matrix server", "tagline": "standalone matrix server",
"version": "0.1.8", "version": "0.1.9",
"healthCheckPath": "/", "healthCheckPath": "/",
"httpPort": 8000, "httpPort": 8000,
"memoryLimit": 536870912, "memoryLimit": 536870912,

View File

@@ -30,8 +30,8 @@ RUN apt-get install -y build-essential python2.7-dev libffi-dev libldap2-dev lib
libssl-dev libjpeg-dev libxslt1-dev libssl-dev libjpeg-dev libxslt1-dev
RUN pip install --upgrade pip RUN pip install --upgrade pip
RUN pip install --upgrade setuptools RUN pip install --upgrade setuptools
RUN pip install psycopg2-binary py-bcrypt python-ldap matrix-synapse-ldap3 RUN pip install psycopg2-binary py-bcrypt python-ldap matrix-synapse-ldap3 lxml netaddr twisted
RUN pip install https://github.com/matrix-org/synapse/archive/v0.99.0.tar.gz RUN pip install https://github.com/matrix-org/synapse/archive/v0.99.3.tar.gz
#https://github.com/matrix-org/synapse/tarball/master #https://github.com/matrix-org/synapse/tarball/master
# copy index.html # copy index.html

View File

@@ -12,6 +12,9 @@ if [[ ! -d /app/data/synapse ]]; then
/run/synapse \ /run/synapse \
/run/turn_log /run/turn_log
# create certs
openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out ${APP_DOMAIN}.tls.crt -keyout ${APP_DOMAIN}.tls.key -subj "/C=DE/ST=Germany/L=Germany/O=Example/OU=Example/CN=${APP_DOMAIN}"
# fix permissions # fix permissions
chown -R www-data.www-data /run/synapse \ chown -R www-data.www-data /run/synapse \
/run/turn_log \ /run/turn_log \