mirror of
https://github.com/YunoHost-Apps/duniter_ynh.git
synced 2024-09-03 18:26:35 +02:00
[enh] nginx conf: proxy_pass to access the ui on /duniter/ and the API on /duniter/api.
This commit is contained in:
parent
58b7fbd356
commit
f47ce16fa1
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue