Announcement

Collapse
No announcement yet.

change web port 8754 on fr24feed

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • change web port 8754 on fr24feed

    Hi,
    I have a raspberry + linux + fr24feed.
    Is it possible change the web port 8754?
    I can not find this configuration setting..

  • #2
    No. It is hard coded as part of the app programming. Not calling an external/configurable addon
    Posts not to be taken as official support representation - Just a helpful uploader who tinkers

    Comment


    • #3
      Hi

      It cannot be changed as it is hard-coded into the binary but you could do a simple redirect using iptables to make life easier.

      iptables -t nat -A PREROUTING -i wlan0 -p tcp --dport 80 -j REDIRECT --to-port 8754
      or
      iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8754

      Note the -i parameter is for the network interface that incoming connections will be on.

      You may also add this to your /etc/rc.local or any other method that will automatically run this when the pi reboots.

      Comment

      Working...
      X