我希望能够https://localhost:888/
在我的浏览器中访问,并且它的行为与我访问时的行为相同https://localhost:999/
我怎样才能做到这一点?
我尝试添加
server {
listen 888;
server_name localhost;
location / {
proxy_pass https://localhost:999;
include /etc/nginx/proxy_params;
}
}
到一个新文件/usr/local/etc/nginx/servers/default
,但我无法访问任何网页localhost:888
(即使 localhost:999 响应正常)
我正在使用 homebrew ( brew install nginx
) 版本的 nginx