我正在使用VSCode的LiveServer插件来服务我的页面。我需要在443端口号上提供它。下面是我的设置。json文件。
{
"liveServer.settings.port": 443,
"liveServer.settings.root": "/",
"liveServer.settings.CustomBrowser": "chrome",
"liveServer.settings.https": {
"enable": true,
"cert": "xxx/https/localhost.pem",
"key": "xxx/localhost.key",
"passphrase": "XXXXXX"
} }
一旦我运行服务器端口号自动从443更改为444。有人能帮忙吗?提前谢谢。
如果是Windows操作系统,请打开Powershell并输入以下命令:Test-NetConnection -computername google.de -port 443
这将测试端口是否空闲
如果你在windows上运行VSCode和WSL, linux对端口的绑定权限限制小于1000,发现https://www.geeksforgeeks.org/bind-port-number-less-1024-non-root-access/和https://github.com/microsoft/vscode/issues/138064,还没有找到解决方案。谁有线索,请分享。