changeset 167 | e3c49bf5fae9 |
parent 163 | 40b78af86337 |
child 200 | 10051617d075 |
166:4ab7efce7321 | 167:e3c49bf5fae9 |
---|---|
37 proxy_read_timeout 600; |
37 proxy_read_timeout 600; |
38 |
38 |
39 location /_matrix { |
39 location /_matrix { |
40 proxy_pass http://127.0.0.1:{{nginx_proxy_port}}; |
40 proxy_pass http://127.0.0.1:{{nginx_proxy_port}}; |
41 } |
41 } |
42 |
|
43 root /var/www/{{nginx_server_name}}; |
|
44 index index.html; |
|
45 |
|
46 location / { |
|
47 try_files $uri $uri/ =404; |
|
48 } |
|
42 } |
49 } |