https://localhost:443 becomes https://localhost

I launch a web application by sudo PORT=443 HTTPS=true ./node_modules/.bin/react-scripts start.

Then, I run in a browser. It does open the start page, but the url becomes .

Could anyone tell me why becomes ?

PS: The browser is Chrome.

2

1 Answer

HTTP default hidden port is 80, while HTTPs is 443.

Example:

 | | 

443 is the default port for HTTPs websites.

For example,

Is the same as

and

Is the same as

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like