Hello…
Currently I accesing graylog by URL:
However I need accessing graylog just by:
without port number
I’m currently use Graylog Server Version 5.0 and the hostname is in Internal DNS.
My server.conf settings like this
http_bind_address = 192.X.X.X:9000
http_publish_uri = http://graylog.mycompany.com:9000/
http_external_uri = http://graylog.mycompany.com
I also done this, but still not working
iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -i eth0 -p tcp --dport 9000 -j ACCEPT
iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 9000
Can anybody helps to solve the problem? Thanks ![]()