diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-12-30 13:51:38 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-12-30 13:51:38 +0000 |
commit | fa8bc0ba39454804543a5e8c9a61f23754819578 (patch) | |
tree | 46390da094b83e7c5ce4c84d3dc3a546eba099cb | |
parent | Get Synapse main and worker process startup working! (diff) | |
download | synapse-fa8bc0ba39454804543a5e8c9a61f23754819578.tar.xz |
Only expose nginx listening port (8008). Add more worker configs
-rw-r--r-- | docker/Dockerfile-workers | 6 | ||||
-rwxr-xr-x | docker/configure_workers_and_start.py | 65 |
2 files changed, 60 insertions, 11 deletions
diff --git a/docker/Dockerfile-workers b/docker/Dockerfile-workers index a98d95d5e8..88efab95ab 100644 --- a/docker/Dockerfile-workers +++ b/docker/Dockerfile-workers @@ -8,8 +8,8 @@ RUN apt-get install -y supervisor redis nginx # Copy the worker process and log configuration files COPY ./docker/workers /conf/workers/ -# Expose Synapse client, ACME challenge and federation ports -EXPOSE 8008/tcp 8009/tcp 8448/tcp +# Expose nginx listener port +EXPOSE 8008/tcp # Volume for user-editable config files, logs etc. VOLUME ["/data"] @@ -19,4 +19,4 @@ VOLUME ["/data"] COPY ./docker/configure_workers_and_start.py /configure_workers_and_start.py ENTRYPOINT ["/configure_workers_and_start.py"] -# TODO: Healthcheck? Which worker to ask? Can we ask supervisord? \ No newline at end of file +# TODO: Healthcheck? Which worker to ask? Can we ask supervisord? diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index 57ae5cac80..a1ae18f39a 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -117,12 +117,9 @@ exitcodes=0 # An nginx site config. Will live in /etc/nginx/conf.d nginx_config_template_header = """ server { - listen 80; - listen [::]:80; - - # For the federation port - listen 8448 default_server; - listen [::]:8448 default_server; + # Listen on Synapse's default HTTP port number + listen 8008; + listen [::]:8008; server_name localhost; """ @@ -130,7 +127,7 @@ server { nginx_config_template_end = """ # Send all other traffic to the main process location ~* ^(\/_matrix|\/_synapse) { - proxy_pass http://localhost:8008; + proxy_pass http://localhost:18008; proxy_set_header X-Forwarded-For $remote_addr; # TODO: Can we move this to the default nginx.conf so all locations are @@ -179,7 +176,7 @@ stderr_logfile_maxbytes=0 elif worker_type == "appservice": # Disable appservice traffic sending from the main process homeserver_config += """ - notify_appservices: false +notify_appservices: false """ # Enable the pusher worker in supervisord @@ -228,6 +225,58 @@ stderr_logfile_maxbytes=0 } """ + elif worker_type == "federation_sender": + # Disable user directory updates on the main process + homeserver_config += """ +send_federation: False + """ + + # Enable the user directory worker in supervisord + supervisord_config += """ +[program:synapse_user_dir] +command=/usr/local/bin/python -m synapse.app.user_dir \ + --config-path="%s" \ + --config-path=/conf/workers/shared.yaml \ + --config-path=/conf/workers/user_dir.yaml +autorestart=unexpected +exitcodes=0 +stdout_logfile=/dev/stdout +stdout_logfile_maxbytes=0 +stderr_logfile=/dev/stderr +stderr_logfile_maxbytes=0 + """ % (config_path,) + + # This worker does not handle any REST endpoints + + elif worker_type == "media_repository": + # Disable user directory updates on the main process + homeserver_config += """ + update_user_directory: false + """ + + # Enable the user directory worker in supervisord + supervisord_config += """ + [program:synapse_user_dir] + command=/usr/local/bin/python -m synapse.app.user_dir \ + --config-path="%s" \ + --config-path=/conf/workers/shared.yaml \ + --config-path=/conf/workers/user_dir.yaml + autorestart=unexpected + exitcodes=0 + stdout_logfile=/dev/stdout + stdout_logfile_maxbytes=0 + stderr_logfile=/dev/stderr + stderr_logfile_maxbytes=0 + """ % (config_path,) + + # Route user directory requests to this worker + nginx_config_body += """ + location ~* (^/_matrix/media/.*$|^/_synapse/admin/v1/(purge_media_cache$|(room|user)/.*/media.*$|media/.*$|quarantine_media/.*$) { + proxy_pass http://localhost:8010; + proxy_set_header X-Forwarded-For $remote_addr; + } + """ + # Write out the config files # Shared homeserver config |