Procházet zdrojové kódy

Fix nginx failing to start on certain low-cache CPUs

pull/6/head
Slavi Pantaleev před 7 roky
rodič
revize
053328be08
2 změnil soubory, kde provedl 7 přidání a 1 odebrání
  1. +2
    -1
      roles/matrix-server/tasks/setup_nginx_proxy.yml
  2. +5
    -0
      roles/matrix-server/templates/nginx-conf.d/nginx-http.conf.j2

+ 2
- 1
roles/matrix-server/tasks/setup_nginx_proxy.yml Zobrazit soubor

@@ -21,12 +21,13 @@
- "{{ matrix_nginx_proxy_data_path }}" - "{{ matrix_nginx_proxy_data_path }}"
- "{{ matrix_nginx_proxy_confd_path }}" - "{{ matrix_nginx_proxy_confd_path }}"


- name: Ensure Matrix Synapse proxy vhost configured
- name: Ensure Matrix nginx-proxy configured
template: template:
src: "{{ role_path }}/templates/nginx-conf.d/{{ item }}.j2" src: "{{ role_path }}/templates/nginx-conf.d/{{ item }}.j2"
dest: "{{ matrix_nginx_proxy_confd_path }}/{{ item }}" dest: "{{ matrix_nginx_proxy_confd_path }}/{{ item }}"
mode: 0644 mode: 0644
with_items: with_items:
- "nginx-http.conf"
- "matrix-synapse.conf" - "matrix-synapse.conf"
- "matrix-riot-web.conf" - "matrix-riot-web.conf"




+ 5
- 0
roles/matrix-server/templates/nginx-conf.d/nginx-http.conf.j2 Zobrazit soubor

@@ -0,0 +1,5 @@
# The default is aligned to the CPU's cache size,
# which can sometimes be too low to handle our 2 vhosts (Synapse and Riot).
#
# Thus, we ensure a larger bucket size value is used.
server_names_hash_bucket_size 64;

Načítá se…
Zrušit
Uložit