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
2023-02-21 15:14:02 +01:00

15 lines
426 B
Nginx Configuration File

location = __PATH__/http-bind {
proxy_pass "http://localhost:5290/http-bind";
}
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
#more_set_headers "Access-Control-Allow-Origin: *";
alias __INSTALL_DIR__/;
index index.html;
}
location ~ .(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
more_set_headers "Access-Control-Allow-Origin: *";
alias __INSTALL_DIR__/dist/;
}