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?
Asked
Active
Viewed 237 times
1 Answers
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
-
So yes it bad practice. Don't do it - you'll alienate some of your users. – Joel Oct 20 '09 at 05:58