0

Is it a bad practice to serve JS (static content basically - css, js and images) on port 8080 instead of HTTP (80)? If so, why? If not, are there any advantages at all?

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
eozzy
  • 66,048
  • 104
  • 272
  • 428

1 Answers1

3

80 is the standard http port and mostly all firewalls are configured to allow traffic to this port. Any other port may need specific port privileges configured in firewall.

Bhushan Bhangale
  • 10,921
  • 5
  • 43
  • 71