How do I forward ports on the same Ubuntu machine? I want my webserver be available on 80 and 8880 port.
Or maybe I could making my apache listening not only on 80 port, but also on 8880? Is that possible?
How do I forward ports on the same Ubuntu machine? I want my webserver be available on 80 and 8880 port.
Or maybe I could making my apache listening not only on 80 port, but also on 8880? Is that possible?
Just use the Listen directive in your Apache configuration file.
For instance, right now you'll probably have
Listen 80
, just addListen 8880
after it:and restart Apache.