I actually came across these two deprecation warnings by accident while investigating an unrelated issue:
/etc/gromox/http.cfg:http_listen_port is deprecated in favor of /etc/gromox/gromox.cfg:http_listen
/etc/gromox/http.cfg:http_listen_tls_port is deprecated in favor of /etc/gromox/gromox.cfg:http_listen_tls
I moved the settings to gromox.cfg:
http_listen=[::]:10080
http_listen_tls=[::]:10443
and removed the old entries from http.cfg:
listen_port=10080
listen_ssl_port=10443
After restarting the gromox-http service, the deprecation warnings disappeared and everything appears to be working normally so far.
Just sharing this in case anyone else comes across the same warnings (http_log_level=6 was set).