mirror of
https://github.com/YunoHost-Apps/element-call_ynh.git
synced 2024-09-03 20:36:02 +02:00
27 lines
739 B
Nginx Configuration File
27 lines
739 B
Nginx Configuration File
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
location __PATH__/ {
|
|
|
|
alias __INSTALL_DIR__/dist/;
|
|
|
|
try_files $uri /$uri /index.html;
|
|
|
|
index index.html;
|
|
|
|
more_set_headers "X-Frame-Options: SAMEORIGIN";
|
|
more_clear_headers "X-Content-Type-Options";
|
|
more_set_headers "X-XSS-Protection: '1; mode=block'";
|
|
more_set_headers "Content-Security-Policy: frame-ancestors 'self'";
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|
|
|
|
# assets can be cached because they have hashed filenames
|
|
location __PATH__/assets {
|
|
expires 1w;
|
|
more_set_headers "Cache-Control: 'public, no-transform'";
|
|
}
|
|
|
|
location __PATH__/apple-app-site-association {
|
|
default_type application/json;
|
|
}
|