installed docker onlyoffice 7.3.0 software.
in our current nginx system,config onlyoffice :
location /crm/onlyoffice/ {
proxy_pass http://onlyoffice:80/;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
proxy_http_version 1.1;
}
=================================
but page network requests have ***/cache/files path invalid ,no add nginx config “/crm/onlyoffice”.
ws://192.168.0.165/crm/onlyoffice/doc/D24A86BEE9AE/c/?EIO=4&transport=websocket
response message contain :42[“message”,{“type”:“documentOpen”,“data”:{“type”:“open”,“status”:“ok”,“data”:{“Editor.bin”:“http://192.168.0.165:80/cache/files/data/D24A86BEE9AE/Editor.bin/Editor.bin?md5=grnYb71vqq6nLCYnA1A4-g&expires=1679740030&filename=Editor.bin",“origin.docx”:“http://192.168.0.165:80/cache/files/data/D24A86BEE9AE/origin.docx/origin.docx?md5=CoEaHKNRgIpNxlU3rXsbaQ&expires=1679740030&filename=origin.docx”},"openedAt”:1677169053306}}]
how to repair this problem ?
thanks