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

32 lines
935 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
alias __FINALPATH__/;
2021-01-30 11:02:12 +01:00
2021-01-30 13:46:56 +01:00
index index.html;
2021-01-29 23:34:36 +01:00
2021-01-30 13:46:56 +01:00
# Force usage of https
2021-01-30 13:56:10 +01:00
if ($scheme = http) {
2021-01-30 13:46:56 +01:00
rewrite ^ https://$server_name$request_uri? permanent;
}
2021-01-29 23:34:36 +01:00
2021-02-02 12:48:54 +01:00
# BOSH
2021-07-22 10:14:44 +02:00
location = __PATH__/xmpp-websocket {
2021-02-02 12:48:54 +01:00
proxy_pass "http://localhost:5290/http-bind";
proxy_buffering off;
2021-07-22 10:14:44 +02:00
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
# CORS
location ~ .(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$ {
2021-07-22 10:17:37 +02:00
more_set_headers "Access-Control-Allow-Origin: '*'"; # Decide here whether you want to allow all or only a particular domain
2021-07-22 10:14:44 +02:00
root __FINALPATH__/; # Properly set the path here
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;
}