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

34 lines
1 KiB
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-21 15:02:55 +01:00
alias __INSTALL_DIR__/;
2021-01-29 23:34:36 +01:00
2023-02-21 15:01:20 +01:00
index index.html;
2023-02-21 14:55:12 +01:00
2023-02-21 15:01:20 +01:00
# BOSH
location = __PATH__/http-bind {
proxy_pass "http://localhost:5290/http-bind";
2023-02-21 14:55:12 +01:00
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
2023-02-21 15:01:20 +01:00
tcp_nodelay on;
2023-02-21 14:55:12 +01:00
}
2023-02-21 15:01:20 +01:00
# CORS
location ~ .(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
more_set_headers "Access-Control-Allow-Origin: *";
#more_set_headers "Access-Control-Max-Age: 3600";
#more_set_headers "Access-Control-Expose-Headers: Content-Length";
#more_set_headers "Access-Control-Allow-Headers: Range";
#more_set_headers "Accept-Ranges: bytes";
2023-02-21 15:02:55 +01:00
alias __INSTALL_DIR__/dist/;
2023-02-21 14:55:12 +01:00
}
2023-02-21 15:01:20 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}