Ajout de XMPP

This commit is contained in:
VC
2019-09-05 13:41:57 +02:00
parent 66717dcc13
commit 84afea328a
11 changed files with 395 additions and 78 deletions

View File

@@ -0,0 +1,10 @@
server {
{% include './templates/header.conf.j2' %}
client_max_body_size 10M;
location / {
proxy_pass http://localhost:5280;
include proxy_params;
}
}

View File

@@ -0,0 +1,12 @@
server {
{% include './templates/header.conf.j2' %}
client_max_body_size 10M;
location /http-bind {
proxy_pass http://localhost:5280/http-bind;
include proxy_params;
proxy_buffering off;
tcp_nodelay on;
}
}