From f47ce16fa16886d76196b0ab668bd2014c260c54 Mon Sep 17 00:00:00 2001 From: Moul Date: Thu, 23 Jun 2016 17:53:34 +0000 Subject: [PATCH] [enh] nginx conf: proxy_pass to access the ui on /duniter/ and the API on /duniter/api. --- conf/nginx.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 501eebe..a9e945c 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,8 +2,13 @@ location YNH_EXAMPLE_PATH/ { rewrite ^YNH_EXAMPLE_PATH$ YNH_EXAMPLE_PATH/ permanent; proxy_pass http://localhost:9220/; proxy_set_header Host $host; - proxy_buffering off; + proxy_buffering off; + + location ^~ /duniter/api/ { + proxy_pass http://YNH_EXAMPLE_DOMAIN:YNH_EXAMPLE_PORT/; + } # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; } +