Files
synapse-app-mas/nginx_matrix.conf
2017-03-13 07:59:00 +00:00

17 lines
272 B
Plaintext

server {
listen 8000;
listen [::]:8000;
server_name _;
location /_matrix {
proxy_pass http://localhost:8008;
proxy_set_header X-Forwarded-For $remote_addr;
}
location / {
root /app/code;
index index.html;
}
}