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

13 lines
361 B
Nginx Configuration File
Raw Permalink Normal View History

2022-02-16 10:25:34 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2023-10-03 17:16:59 +02:00
alias __INSTALL_DIR__/;
2022-02-16 10:25:34 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2023-10-03 17:16:59 +02:00
2022-11-02 23:00:24 +01:00
# Needed part because the app uses SharedArrayBuffer
2022-11-04 01:47:54 +01:00
more_set_headers "Cross-Origin-Embedder-Policy: require-corp" "Cross-Origin-Opener-Policy: same-origin";
2023-10-03 17:16:59 +02:00
}