Hello,
I've installed "OnlyOffice Document Server" on my server, but the 8080 spellchecker's port is already used.
How can i changed the spellchecker's port ?
Thanks for your help.
Regards, AMC
Change spellchecker's port
Re: Change spellchecker's port
Hello AMC!
There is a config onlyoffice-http.conf /etc/nginx/includes
change port
but after update i suppose you will need to edit it again
There is a config onlyoffice-http.conf /etc/nginx/includes
Code: Select all
upstream docservice {
server localhost:8000;
}
upstream spellchecker {
server localhost:8080;
}
upstream example {
server localhost:3000;
}
map $http_host $this_host {
"" $host;
default $http_host;
}
map $http_x_forwarded_proto $the_scheme {
default $http_x_forwarded_proto;
but after update i suppose you will need to edit it again