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

9 lines
135 B
Plaintext
Raw Normal View History

2019-07-10 11:57:30 +00:00
server {
listen 5001;
2019-07-10 13:33:22 +00:00
root /var/www/studio/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
}