1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cinny_ynh.git synced 2024-09-03 18:16:13 +02:00

Fix nginx config

This commit is contained in:
Salamandar 2024-08-09 14:22:25 +02:00
parent 61a4d51f78
commit cba6340334

View file

@ -4,10 +4,10 @@ location __PATH__/ {
# Path to source
alias __INSTALL_DIR__/www/;
try_files $uri /index.html;
try_files $uri __PATH__/index.html;
location ~ ^.*/olm.wasm$ {
try_files $uri /olm.wasm;
location ~ ^__PATH__/.*/olm.wasm$ {
try_files $uri __PATH__/olm.wasm;
}
# From upstream, FIXME: not needed?