DocSpace-buildtools/config/nginx/onlyoffice-client.conf

9 lines
120 B
Plaintext
Raw Normal View History

2023-10-02 10:16:45 +00:00
server {
listen 5001;
root /var/www/client;
index index.html;
location / {
try_files $uri /index.html =404;
}
2019-07-10 11:57:30 +00:00
}