How to disable SAO client and allow only GTK client

Hello Tryton team,
I’m trying to disable SAO on my current instance, my trytond.conf is:

[database]
uri = postgresql://172.17.0.1:5432/test
path = /home/user/attach
language = es

[web]
listen = *:8000
root = /home/user/package

I tried removing the web block and used instead:

[jsonrpc]
listen = *:8000
root = /home/user/package

But get connection reset by peer, is it possible to have only gtk?
Thanks in advance

Not really because the client are thin-client so the server does not know which kind of client its is spoken to.
You could just not serve sao files by removing it from the [web] root but this does not prevent someone to still use it himself.

Oh I see, yes I tried to put a wrong path on root= and always got 405 error. But I thought a better solution could be possible, thanks for quick response!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.