1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/converse_ynh.git synced 2024-09-03 18:25:53 +02:00
converse_ynh/conf/nginx.conf

25 lines
675 B
Nginx Configuration File
Raw Normal View History

2021-01-29 23:34:36 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2021-01-30 13:46:56 +01:00
# Path to source
2023-02-17 13:13:31 +01:00
alias __INSTALL_DIR__/;
2021-01-30 11:02:12 +01:00
2022-04-02 21:25:33 +02:00
index index.html;
2021-01-29 23:34:36 +01:00
2023-02-19 11:49:36 +01:00
more_set_headers "Access-Control-Allow-Origin: *";
2023-02-17 23:01:32 +01:00
2021-01-30 13:46:56 +01:00
location = __PATH__/http-bind {
2021-02-02 12:48:54 +01:00
proxy_pass "http://localhost:5290/http-bind";
proxy_http_version 1.1;
2021-01-30 13:46:56 +01:00
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
2021-02-02 12:48:54 +01:00
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2021-01-30 13:46:56 +01:00
proxy_set_header X-Forwarded-Proto $scheme;
2021-02-02 12:48:54 +01:00
proxy_buffering off;
tcp_nodelay on;
2021-01-30 14:30:11 +01:00
}
2021-01-30 13:56:10 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}