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

9 lines
128 B
Plaintext
Raw Normal View History

2019-07-10 11:57:30 +00:00
server {
listen 5001;
root /var/www/client;
2019-07-10 11:57:30 +00:00
index index.html;
2019-08-06 11:27:19 +00:00
location / {
try_files $uri /index.html =404;
}
2019-07-10 11:57:30 +00:00
}