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

16 lines
426 B
Nginx Configuration File
Raw Permalink Normal View History

2023-02-21 15:12:37 +01:00
location = __PATH__/http-bind {
proxy_pass "http://localhost:5290/http-bind";
}
2021-01-29 23:34:36 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2023-02-21 15:12:37 +01:00
#more_set_headers "Access-Control-Allow-Origin: *";
2023-02-21 15:02:55 +01:00
alias __INSTALL_DIR__/;
2023-02-21 15:01:20 +01:00
index index.html;
2023-02-21 15:12:37 +01:00
}
2023-02-21 14:55:12 +01:00
2023-02-21 15:12:37 +01:00
location ~ .(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
more_set_headers "Access-Control-Allow-Origin: *";
alias __INSTALL_DIR__/dist/;
}